/* Variables CSS para personalización */
:root {
    --primary-color: #34b7a7;
    --primary-hover: #3dc8b7;
    --primary-active: #268075;
    --primary-disabled: #9ae9e0;
    --primary-light: #e8f5f3;
}

.btn-gabo {
    background-color: var(--primary-color);
    margin-bottom: 10px;
}

.pointer {
    cursor: pointer;
}

.tech-logo {
    width: 10px;
    height: 10px;
}

.tech-logo img {
    width: 100%;
    height: 100%;
}

.btn-cl {
    background-color: var(--primary-color);
}

.btn-cl:hover {
    background-color: var(--primary-hover);
}

.btn-cl:active {
    background-color: var(--primary-active);
}

.btn-cl:focus {
    background-color: var(--primary-active);
}

.btn-cl:disabled {
    background-color: var(--primary-disabled);
    cursor: not-allowed;
}

.btn-main {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

.enlargable {
    transition: transform 0.2s ease;
    box-shadow: 0 4px 6px 0 rgba(22, 22, 26, 0.18);
    /* border-radius: 0; */
    border: 0;
    margin-bottom: 1.5em;
}


.enlargable:hover {
    transform: scale(1.05);
}

.enlargable-sm {
    transition: transform 0.1s ease;
}

.enlargable-sm:hover {
    transform: scale(1.02);
}

.selector-pagina-button {
    padding: 3px 10px;
    border: 1px solid;
    border-color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
}

/* Student Header */
.student-header {
    padding: 16px 24px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.student-name {
    margin: 0;
}

.student-email {
    color: #6c757d;
}

.back-button {
    padding: 8px 16px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.back-button:hover {
    background-color: #5a6268;
}

/* Table Styles */
.table-header {
    display: grid;
    grid-template-columns: 1fr 120px 80px 100px 120px;
    gap: 0;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
    padding: 16px 24px;
    border-bottom: 1px solid #e9ecef;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 120px 80px 100px 120px;
    gap: 0;
    font-size: 14px;
    color: #495057;
    padding: 16px 24px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: #f8f9fa;
}

.table-row.last-row {
    border-bottom: none;
}

.row-number {
    color: #6c757d;
}

.evaluation-name {
    font-weight: 500;
}

.evaluation-date {
    color: #6c757d;
}

.evaluation-grade {
    font-weight: 600;
}

.evaluation-weight {
    color: #6c757d;
}

/* Status Badge */
.status-badge {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.buena-nota {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.aprobado {
    background-color: #cce5ff;
    color: #004085;
}

.status-badge.suspendido {
    background-color: #f8d7da;
    color: #721c24;
}



.status-badge.pending {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Average Display */
.average-display {
    font-size: 32px;
    font-weight: 700;
    color: #28a745;
    margin: 0;
}

.average-scale {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
}

/* Course Status */
.course-status {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background-color: #d4edda;
    color: #155724;
    display: inline-block;
}

.student-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.total-mark {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 4px;
}

.no-students {
    padding: 40px;
    text-align: 'center';
    color: '#6c757d';
}

.total-header {
    text-align: 'center';
    cursor: 'pointer';
    user-select: 'none';
    display: 'flex';
    align-items: 'center';
    justify-content: 'center';
    gap: '4px'
}