body {
    font-family: 'Tajawal', sans-serif;
    overflow-x: hidden;
}

#wrapper {
    display: flex;
    transition: all 0.4s ease 0s;
}

#sidebar-wrapper {
    min-height: 100vh;
    width: 270px;
    margin-right: -270px; /* Hidden by default */
    transition: margin 0.25s ease-out;
    background-color: #212529; /* Dark background */
}

#wrapper.toggled #sidebar-wrapper {
    margin-right: 0;
}

#page-content-wrapper {
    width: 100%;
}

.sidebar-heading {
    border-bottom: 1px solid #495057;
}

.list-group-item {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Custom button colors from screenshot */
.btn-custom-login {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    font-weight: bold;
}
.btn-custom-login:hover {
    background-color: #b1dfbb;
    border-color: #a3d9b2;
    color: #155724;
}

.btn-custom-back {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    font-weight: bold;
}
.btn-custom-back:hover {
    background-color: #f1b0b7;
    border-color: #ee9ca7;
    color: #721c24;
}
.btn-choose-day {
    background-color: transparent;
    color: #6c8a2c;
    border: 2px solid #92b73a;
    border-radius: 5px;
    padding: 5px 15px;
    font-weight: bold;
    text-decoration: none;
}

    .btn-choose-day:hover {
        background-color: #92b73a;
        color: white;
    }

.receipt-number {
    display: block;
    color: white;
    background-color: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 4px;
    padding: 2px 8px;
    font-weight: bold;
    margin-bottom: 4px;
}

.payment-date {
    display: block;
    color: #28a745;
    font-weight: bold;
}