﻿body {
    background: #f4f7fb;
    font-family: 'Segoe UI';
}

.text-navy {
    color: #0F2A44;
}

.navbar {
    background: #0F2A44;
}

footer {
    margin-left: 260px;
    background: #0F2A44;
}

.page-header {
    background: linear-gradient(135deg,#1E88E5,#0F2A44);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.btn-primary {
    background: #175183;
    border: none;
}

    .btn-primary:hover {
        background: #155a96;
    }

.form-control {
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
.textbox-width {
    width: 280px;
}

.ticket-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
   
}
    .ticket-box .ticket {
        width: 300px;
        border: 1px dashed black;
        padding: 20px;
        margin: auto;
    }

.amount-box {
    background: #F1F5F9;
    padding: 12px;
    border-radius: 6px;
    margin-top: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.ash-bg {
    background: #F1F5F9;
    border-radius: 6px;
    text-align: center;
}

.modal {
    width: 450px;
    margin: auto;
    right: 0;
}

/*** MAIN CONTENT ***/
.main-content {
    margin-left: 260px;
    padding: 30px;
}

/*** OFFCANVAS ***/
.offcanvas.offcanvas-start {
    width: 320px;
    color: #ffffff;
    background: #0F2A44;
    padding: 30px 10px 0 10px;
}

.offcanvas-body .nav-link {
    color: #cfd8dc;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.3s;
    font-weight: 500;
}

    .offcanvas-body .nav-link:hover {
        background: #175183;
        color: white;
        transform: translateX(2px);
    }

    .offcanvas-body .nav-link.active {
        background: #175183;
        color: white;
    }

/*** SIDEBAR ***/
.sidebar {
    position: fixed;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #0F2A44;
    color: white;
    padding: 30px 10px 0 10px;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

    /* SIDEBAR LINKS */

    .sidebar .nav-link {
        color: #cfd8dc;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 10px;
        transition: 0.3s;
        font-weight: 500;
    }

        .sidebar .nav-link:hover {
            background: #175183;
            color: white;
            transform: translateX(2px);
        }

        .sidebar .nav-link.active {
            background: #175183;
            color: white;
        }

.icon-size {
    font-size: 60px;
}

/*** MODAL STYLE ***/
.amount {
    font-size: 32px;
    font-weight: bold;
    margin: 20px 0;
}

button {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.confirm {
    background: #16a34a;
    color: white;
}

.cancel {
    background: #ef4444;
    color: white;
}

@media (max-width: 991px) {
    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
        padding: 10px;
    }

    footer {
        margin-left: 0;
    }
}