/* Art Evaluation Styles */
.art-evaluation {
    margin: 20px 0;
    padding: 0;
}

.art-evaluation .toggle-eval {
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 12px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.art-evaluation .toggle-eval:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.art-evaluation .eval-content {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 10px;
    line-height: 1.6;
}

.art-evaluation .eval-content p {
    margin-bottom: 15px;
}

.art-evaluation .eval-content p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .art-evaluation .toggle-eval {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .art-evaluation .eval-content {
        padding: 15px;
    }
}
