/* ===== GLOBAL ===== */
body {
    background: #f8f9fa;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

html {
    height: 100%;
}

.main-container {
    flex: 1;
    padding: 12px;
}

/* ===== OTP ===== */
.otp-input {
    width: 45px;
    height: 55px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
}

.otp-input:focus {
    border-color: #E61E8B;
    box-shadow: 0 0 5px rgba(255,193,7,0.5);
}

/* ===== CARDS ===== */
.card {
    border-radius: 16px;
}

.packageCard {
    cursor: pointer;
    transition: 0.2s;
    border-radius: 14px;
}

.packageCard:hover {
    border-color: #E61E8B;
    background: #fff8e1;
}

.packageCard.active {
    border: 2px solid #E61E8B;
    background: #fff3cd;
}

/* ===== INPUTS ===== */
input, select, textarea {
    border-radius: 10px !important;
    padding: 10px !important;
    font-size: 14px;
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: 12px;
    padding: 12px;
    font-weight: 500;
}

/* ===== NAVBAR ===== */
.navbar {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .main-container {
        padding: 10px;
    }

    h3 {
        font-size: 20px;
    }

    .card {
        padding: 14px !important;
    }

    .row > div {
        margin-bottom: 12px;
    }
}

/* ===== SIDEBAR ===== */
.sidebar-container {
    background: #fff;
    border-right: 1px solid #eee;
    min-height: 100vh;
}

.sidebar-link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
}

.sidebar-link:hover {
    background: #E61E8B;
    color: #000;
}

.sidebar-parent {
    font-weight: 600;
    margin-top: 10px;
}

.sidebar-sublink {
    display: block;
    padding: 6px 10px;
    margin-left: 10px;
    font-size: 14px;
    color: #666;
    border-radius: 8px;
    text-decoration: none;
}

.sidebar-sublink:hover {
    background: #E61E8B;
    color: #000;
}

/* ===== DRAWER ===== */
.offcanvas {
    width: 260px;
}

.drawer-link,
.drawer-sublink {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
}

.drawer-link:hover,
.drawer-sublink:hover {
    background: #E61E8B;
    color: #000;
}

.drawer-parent {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    cursor: pointer;
}


 
/* Buttons */
.btn {
    border-radius: 12px;
    padding: 12px;
    font-weight: 500;
}

/* Navbar polish */
.navbar {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

 
/* ================= DRAWER ================= */
 

.home-btn {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.home-btn:hover {
    background: #E61E8B;
    color: #000 !important;
    border-color: #E61E8B;
    transform: translateY(-1px);
}


.nav-btn {
    color: #fff;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #E61E8B;
}

.active-nav {
    background: #E61E8B;
    color: #000 !important;
    font-weight: 600;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #E61E8B;
}

.active-nav {
    background: #E61E8B;
    color: #ffffff!important;
    font-weight: 700;
}

.home-btn:hover {
    background: #E61E8B;
    color: #fff !important;
    border-color: #E61E8B;
    transform: translateY(-1px);
}


.btn-warning 
 {
    --bs-btn-color: #000;
    --bs-btn-bg: #ff07d2ff;
    --bs-btn-border-color: #ff07d2ff;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #ff07d2ff;
    --bs-btn-hover-border-color: #ff07d2ff;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ff07d2ff;
    --bs-btn-active-border-color: #ff07d2ff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ff07d2ff;
    --bs-btn-disabled-border-color: #ff07d2ff;
 }



 