/* KNMA Education — Frontend Styles */

.knma-edu-wrap {
    font-family: 'Manrope', 'Rubik', sans-serif;
    max-width: 100%;
    margin: 0 auto;
}

/* Table wrapper */
.knma-edu-table-responsive {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

/* Table */
.knma-edu-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.knma-edu-table thead {
    background: #2E3F7F;
    color: #fff;
}

.knma-edu-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.knma-edu-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.15s;
}

.knma-edu-table tbody tr:last-child {
    border-bottom: none;
}

.knma-edu-table tbody tr:hover {
    background: #f5f7ff;
}

.knma-edu-table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
}

/* Cell-specific */
.knma-edu-cell-code {
    min-width: 200px;
    font-weight: 500;
}

.knma-edu-cell-accreditation {
    min-width: 150px;
}

.knma-edu-cell-form {
    min-width: 90px;
    text-align: center;
}

.knma-edu-cell-file {
    text-align: center;
    min-width: 80px;
}

.knma-edu-cell-elearning {
    text-align: center;
    min-width: 70px;
}

/* Badges */
.knma-edu-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid transparent;
}

.knma-edu-badge--blue {
    background: #eef0fb;
    color: #2E3F7F;
    border-color: #c8cef0;
}

.knma-edu-badge--orange {
    background: #fff3e0;
    color: #e65100;
    border-color: #ffcc80;
    margin-top: 1rem;
}

.knma-edu-badge--green {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #a5d6a7;
}

.knma-edu-badge--grey {
    background: #f5f5f5;
    color: #757575;
    border-color: #e0e0e0;
}

/* File links */
.knma-edu-file-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2E3F7F;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.knma-edu-file-link:hover {
    color: #1e2d5e;
}

.knma-edu-file-link svg {
    flex-shrink: 0;
}

/* Empty state */
.knma-edu-empty {
    text-align: center;
    padding: 40px 16px !important;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .knma-edu-table thead th,
    .knma-edu-table tbody td {
        padding: 10px 10px;
        font-size: 13px;
    }

    .knma-edu-table thead th {
        font-size: 11px;
    }

    .knma-edu-badge {
        padding: 3px 8px;
        font-size: 11px;
    }

    .knma-edu-file-link {
        font-size: 12px;
    }
}
