/*
Theme Name: RSJK Theme
Theme URI: https://yourwebsite.com/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: Tema WordPress kustom untuk RSJK, berdasarkan desain yang disediakan menggunakan Bootstrap 5.
Version: 1.0
Requires at least: 5.8
Tested up to: 6.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rsjk-theme
Tags: custom-layout, bootstrap, responsive
*/

/* --- CSS KUSTOM ANDA DI SINI --- */
/* Gaya untuk kartu jadwal */
.schedule-card {
    border: 1px solid #e0e0e0; /* Border default tipis */
    border-radius: 8px; /* Sudut membulat */
    transition: all 0.2s ease-in-out; /* Animasi transisi */
    cursor: pointer;
}

/* Gaya untuk kartu yang sudah dipilih (Active State) */
.schedule-card.selected-active {
    border: 1px solid #00ac9a !important; /* Border tebal berwarna toska */
}

/* Gaya hover untuk menunjukkan interaksi */
.schedule-card:not(.selected-active):hover {
    border-color: #a0a0a0;
}

.js-disabled {
    /* Changes cursor to indicate it's not clickable */
    pointer-events: none; 
    
    /* Visually fades the link */
    opacity: 0.6; 
    
    /* Removes any default hover/active states */
    cursor: default; 
    
    /* Removes the underline, if necessary */
    text-decoration: none; 
}

.border-primary-home{
    border-color: var(--primary);
}

.bg-accent{
    background-color: #d0f7f3;
}