/* Container Styles */
.workcard-evaluations-container {
    margin: 20px auto;
    font-family: Arial, sans-serif;
    max-width: 1200px;
}

/* Grid Styles */
.evaluations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Evaluation Card Styles */
.evaluation-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.evaluation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Header Section */
.evaluation-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 5px;
    font-weight: bold;
}

.evaluation-header h4 {
    font-size: 1rem;
    color: #007bff;
    margin: 0 0 10px;
    font-weight: normal;
}

.workcard-name {
    font-weight: normal;
    color: #555;
}

/* Details Section */
.evaluation-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.detail-label {
    font-size: 0.9rem;
    color: #666;
}

.detail-value {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}

/* Footer Section */
.evaluation-footer {
    text-align: right;
}

.evaluate-link {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.evaluate-link:hover {
    color: #0056b3;
}

/* No Evaluations Section */
.no-evaluations p {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin: 20px 0;
}
