/* ===============================
    JADWAL
================================ */
.schedule-card{
    width:100%;
    background:#fff;
    border-radius:24px;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    padding-top:12px;
    padding-bottom:32px;
    padding-left:0;
    padding-right:0;
}

.schedule-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    margin-bottom:30px;
    padding-left:32px;
    padding-right:32px;
}

.schedule-title-group{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}

.schedule-title-group h2{
    margin:0;
    font-size:38px;
    font-weight:700;
    color:#1f2937;
    line-height:1.2;
}

.schedule-date{
    color:#6b7280;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:18px;
    font-weight:600;
}

.schedule-filter {
    display: flex;
    align-items: center;
    gap:18px;
    margin:30px 0;
    padding-left:32px;
    padding-right:32px;
}

.schedule-filter label {
    font-weight: 600;
    font-size:16px;
    color:#374151;
}

.schedule-filter select {
    width:260px;
    height:48px;
    padding:0 16px;
    border:1px solid #d7dce2;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    transition:.2s;
}

.schedule-filter select:focus{
    outline:none;
    box-shadow:0 0 0 4px rgba(215,25,32,.08);
}

.schedule-table{
    width:100%;
    table-layout:fixed;
    border-collapse:separate;
    border-spacing:0;
}

.schedule-table th:nth-child(1),
.schedule-table td:nth-child(1){
    width:22%;
}

.schedule-table th:nth-child(2),
.schedule-table td:nth-child(2){
    width:28%;
}

.schedule-table th:nth-child(3),
.schedule-table td:nth-child(3){
    width:20%;
}

.schedule-table th:nth-child(4),
.schedule-table td:nth-child(4){
    width:17%;
    text-align:center;
}

.schedule-table th:nth-child(5),
.schedule-table td:nth-child(5){
    width:13%;
    text-align:center;
}

.schedule-table-wrapper {
    overflow:hidden;
    width:100%;
    padding:0 32px;
    margin-top:24px;
    border:none;
    border-radius:0;
}

/* sticky header */
.schedule-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    color: #fff;
    background:#D71920;
    padding:18px 20px;
    font-size:17px;
    font-weight:600;
}

.schedule-table thead th:first-child{
    border-top-left-radius:18px;
}

.schedule-table thead th:last-child{
    border-top-right-radius:18px;
}

.schedule-table tbody td{
    padding:22px 20px;
    border-bottom:1px solid #ececec;
    font-size:16px;
    vertical-align:middle;
}

.schedule-table tbody tr{
    transition:.2s;
}

.schedule-table tbody tr:hover{
    background:#fafafa;
}

.lihat-semua{
    margin-top:8px;
    color:#D71920;
    font-size:20px;
    font-weight:700;
    text-decoration:none;
    transition:.2s;
}

.lihat-semua:hover{
    color:#b31218;
    text-decoration:none;
}

.jadwal-beranda {
    margin: 10px auto;
    padding-right:0%;
    padding-left: 0%;
    padding-top: 30px;
}

.jadwal-row.is-active {
    background-color: #e8f2ff;
}

.jadwal-row.is-active td {
    font-weight: 600;
}

.jadwal-mingguan h1 {
    margin-bottom: 10px;
}

.jadwal-hari {
    margin-top: 40px;
}

.jadwal-hari h2 {
    margin-bottom: 15px;
    color: #0b63ce;
}

.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    padding: 4px 8px;
    color: #fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:92px;
    height:36px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
}

.badge-active {
    background-color: #2563eb;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.badge-praktik {
    background:#dcfce7;
    color:#15803d;
}

.badge-belum{
    background:#fef3c7;
    color:#b45309;
}

.badge-selesai{
    background:#e5e7eb;
    color:#4b5563;
}

.badge-libur {
    background:#fee2e2;
    color:#b91c1c;
}

.badge-cuti {
    background:#ffedd5;
    color:#c2410c;
}

.note {
    font-size: 12px;
    color: #555;
}

.status-cell {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    justify-content: center;
    min-height: 48px;
}