/* Rating controls on special conspect detail page */
.rating-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.rating-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.rating-button i {
    font-size: 1.1em;
}

.rating-count {
    font-weight: bold;
    min-width: 1.5rem;
    text-align: center;
}

.like-button {
    background-color: var(--success-color, #28a745);
    color: #fff;
}

.dislike-button {
    background-color: var(--danger-color, #dc3545);
    color: #fff;
}

.rating-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.rating-button.active {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.rating-button:active {
    transform: translateY(0);
}
