/* ============================
   SRU PRE-DEGREE THEME
   ============================ */

:root {
    --primary-color: #003366;
    --accent-color: #FFD700;
    --bg-light: #F5F7FA;
    --text-dark: #333;
    --radius: 12px;
}

/* Global */
body {
    font-family: "Kanit", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Header */
.sru-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sru-header img {
    height: 55px;
}

.sru-header-title {
    font-size: 22px;
    font-weight: 600;
}

/* Card */
.card {
    border-radius: var(--radius);
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Clickable */
.clickable {
    cursor: pointer;
    transition: transform .2s;
    border-radius: var(--radius);
}

.clickable:hover {
    transform: scale(1.03);
}

/* Buttons */
.btn-sru {
    background-color: var(--accent-color);
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 18px;
    border: none;
    transition: 0.25s;
}

.btn-sru:hover {
    background-color: #e6c200;
}

/* Table */
.table-sru {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
}

.table-sru th {
    background-color: var(--primary-color);
    color: white;
}

.table-sru td, .table-sru th {
    padding: 12px;
}

/* Footer */
.sru-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}