/* =========================
   BASE
========================= */
body{
    margin:0;
    font-family:'Poppins',sans-serif;
    transition:0.3s;
}

/* =========================
   THEME
========================= */
body.light{
    background:#f4f7fb;
    color:#000;
}

body.dark{
    background:linear-gradient(135deg,#667eea,#764ba2);
    color:#fff;
}

/* =========================
   SIDEBAR
========================= */
.sidebar{
    width:260px;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    padding:20px;
    overflow:auto;
    transition:0.3s;
    background:linear-gradient(135deg,#667eea,#764ba2);
}

/* LIGHT SIDEBAR */
body.light .sidebar{
    background:#1e40af;
}

/* DARK SIDEBAR */
body.dark .sidebar{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border-right:1px solid rgba(255,255,255,0.1);
}

/* SIDEBAR CONTENT */
.sidebar h2{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.sidebar a{
    display:block;
    padding:12px;
    margin:8px 0;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    transition:0.3s;
}

.sidebar a:hover{
    background:#f59e0b;
    color:#000;
    transform:translateX(5px);
}

.sidebar button{
    width:100%;
    padding:10px;
    border:none;
    border-radius:10px;
    font-weight:600;
    margin-bottom:15px;
    cursor:pointer;
}

/* =========================
   MAIN AREA
========================= */
.main{
    margin-left:260px;
    padding:30px;
}

/* =========================
   FORM
========================= */
.form-box{
    padding:25px;
    border-radius:15px;
    transition:0.3s;
}

body.dark .form-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.1);
}

body.light .form-box{
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* INPUTS */
label{
    font-weight:600;
    margin-bottom:6px;
    display:block;
}

.form-control{
    border:none;
    border-radius:10px;
    padding:12px;
    margin-bottom:10px;
    border: 1px solid grey;
}

body.dark .form-control{
    background:rgba(255,255,255,0.1);
    color:#fff;
}

body.dark .form-control::placeholder{
    color:#bbb;
}

/* =========================
   BUTTONS
========================= */
.btn-save{
    background:linear-gradient(135deg,#667eea,#764ba2);
    color:#fff;
    font-weight:600;
    padding:12px;
    border-radius:12px;
    border:none;
    transition:0.3s;
}

.btn-save:hover{
    transform:scale(1.02);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.btn-success{
    background:#1e40af !important;
    color:#fff !important;
    border:1px solid #1e40af !important;
}

/* =========================
   SERIES BUTTONS
========================= */
.series-btns button{
    background:#1e40af;
    border:none;
    color:#fff;
    padding:8px 15px;
    margin:5px;
    border-radius:8px;
    cursor:pointer;
}

.series-btns button:hover{
    background:#f59e0b;
    color:#000;
}

/* =========================
   SEATS
========================= */
.seat-grid span{
    display:inline-block;
    width:45px;
    height:40px;
    line-height:40px;
    text-align:center;
    margin:5px;
    background:#e5e7eb;
    border-radius:6px;
    cursor:pointer;
    color:#000;
}

.seat-grid span.active{
    background:#22c55e;
    color:#fff;
}

/* =========================
   BOX (REPORT)
========================= */
.box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
    margin-bottom:20px;
}

.box table{
    width:100%;
    font-size:13px;
    border: 1px solid grey !important;
}
.box table tbody, td, tfoot, th, thead, tr{
    border: 1px solid grey !important;
}

.box table th{
    background:#f3f4f6;
    padding:10px;
}

/* =========================
   PRINT PAGE (FIXED)
========================= */
.topbar{
    background:#fff;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #e5e7eb;
}

.topbar h2{
    margin:0;
    font-size:18px;
}

.close-btn{
    background:#ef4444;
    color:#fff;
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    text-decoration:none;
    background: none !important;
}

.wrapper{
    padding:20px;
}

.card{
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

/* TABLE */
table{
    width:100%;
    border-collapse:collapse;
}

th, td{
    padding:12px 14px;
    border-bottom:1px solid #eee;
}
/* BADGES */
.badge{
    padding:4px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
}

.cash{
    background:#dcfce7;
    color:#166534;
}

.online{
    background:#dbeafe;
    color:#1e40af;
}

/* STATUS */
.dot{
    width:8px;
    height:8px;
    border-radius:50%;
    display:inline-block;
    margin-right:5px;
}

.green{background:#22c55e;}
.red{background:#ef4444;}

/* BUTTON */
.btn{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:6px 12px;
    border-radius:6px;
    cursor:pointer;
    margin-bottom: 10px !important;
}

.btn:hover{
    background:#1d4ed8;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){
    .sidebar{
        position:relative;
        width:100%;
        height:auto;
    }

    .main{
        margin-left:0;
    }

    table{
        font-size:11px;
    }
}

/* PRINT */
@media print{
    .topbar,
    .no-print{
        display:none;
    }

    body{
        background:#fff;
    }
}


.main{
    margin-left:250px;
    padding:20px;
}
.card-box{
    border-radius:15px;
    padding:20px;
    text-align:center;
}
body.dark .card-box{ 
    background:rgba(255,255,255,0.15);
}
body.light .card-box{ 
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.1); 
}
.chart-box{
    border-radius:20px;
    padding:25px;
    margin-top:25px;
}
body.dark .chart-box{
    background:rgba(255,255,255,0.15); 
}
body.light .chart-box{ 
    background:#fff; 
    box-shadow:0 5px 20px rgba(0,0,0,0.1); 
}
@media(max-width:768px){
    .sidebar{position:relative;width:100%;height:auto;}
    .main{margin-left:0;}
}
.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:22px;
    color:#000;
    text-decoration:none;
    font-weight:bold;
}
.close-btn:hover{ color:red; }
.btn-success{
    background:#1e40af !important;
    color: #fff !important;
    border:1px #1e40af !important;
    color: #fff !important ;
}
.jaanu .container{
    width:90%;
    margin:auto;
    background:#fff;
    padding:20px;
    position:relative;
    margin-top: 50px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}
h2{
    text-align:center;
}
.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    text-decoration:none;
    font-size:22px;
    color:red;
    font-weight:bold;
}
.form-box{
    margin:15px 0;
}
.form-box form input,select{
    padding:8px;
    width:200px;
}
.form-box form button{
    padding:8px 12px;
    background:green;
    color:#fff;
    border:none;
    cursor:pointer;
}
.form-box form button:hover{
    background:darkgreen;
}
.jaanu .container table{
    width:100%;
    border-collapse: collapse;
    margin-top:15px;
}

.jaanu .container table tr th,td{
    border:1px solid #000;
    padding:8px;
    text-align:center;
}
.jaanu .container table tr th{
    background:#eee;
}
.jaanu .container table tr .total{
    font-weight:bold;
    background:#ddd;
}
.jaanu .container .print-btn{
    display:inline-block;
    margin-top:10px;
    padding:8px 12px;
    background:#007bff;
    color:#fff;
    text-decoration:none;
}
.jaanu .container .print-btn:hover{
    background:#0056b3;
}
.col-md-6 .form-control{
    width: 100% !important;
    border: 1px solid grey;
}
.col-12 .form-control{
    width: 100% !important;
}
.col-md-3 .form-control{
   border: 1px solid grey; 
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

.jalsaa{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden !important;
    background:#000;
}

.jalsaa::before,
.jalsaa::after{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    filter:blur(120px);
    animation:move 10s infinite alternate;
}

.jalsaa::before{
    background:linear-gradient(45deg,#00f5ff,#ff00e0);
    top:-150px;
    left:-150px;
}

.jalsaa::after{
    background:linear-gradient(45deg,#ffcc00,#ff0055);
    bottom:-150px;
    right:-150px;
}

@keyframes move{
    from{transform:translate(0,0);}
    to{transform:translate(80px,60px);}
}

.jalsaa_in .login-box{
    position:relative;
    z-index:1;
    width:100%;
    max-width:420px;
    padding:40px;
    border-radius:20px;
    background:rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border:1px solid rgba(255,255,255,0.2);
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
    color:#fff;
}

.jalsaa_in .login-box .logo{
    text-align:center;
    font-size:28px;
    font-weight:700;
    background:linear-gradient(90deg,#00f5ff,#ff00e0,#ffcc00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:5px;
}

.jalsaa_in .login-box .subtitle{
    text-align:center;
    font-size:13px;
    opacity:0.7;
    margin-bottom:25px;
}

.jalsaa_in .login-box form .form-control{
    width:100%;
    padding:12px 15px;
    margin-bottom:15px;
    border-radius:12px;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.12);
    color:#fff;
}

.jalsaa_in .login-box form .form-control::placeholder{
    color:rgba(255,255,255,0.6);
}

.btn-login{
    width:100%;
    padding:12px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    color:#000;
    background:linear-gradient(90deg,#00f5ff,#ff00e0,#ffcc00);
}

.error{
    text-align:center;
    color:#ff4d6d;
    margin-bottom:10px;
    font-size:14px;
}


.lata{
    margin:0;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    font-family:Arial;
    background: linear-gradient(135deg,#667eea,#764ba2);
    color:#fff;
}
.lata .box{
    text-align:center;
    background: rgba(255,255,255,0.1);
    padding:40px;
    border-radius:15px;
    backdrop-filter: blur(10px);
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}
.lata .box > h1{
    margin-bottom:10px;
    font-size:28px;
}
.lata .box > p{
    opacity:0.8;
}

.lata .box .loader{
    margin:20px auto;
    width:50px;
    height:50px;
    border:5px solid rgba(255,255,255,0.3);
    border-top:5px solid #fff;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    0%{ transform:rotate(0deg); }
    100%{ transform:rotate(360deg); }
}

.lata .box .small{
    font-size:13px;
    margin-top:10px;
    opacity:0.7;
}



.kala{
    margin:0;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg,#667eea,#764ba2);
}
.kala .logout-box{
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    padding:45px 35px;
    border-radius:18px;
    text-align:center;
    color:#fff;
    max-width:420px;
    width:90%;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
    animation: fadeIn 0.6s ease;
}
@keyframes fadeIn{
    from{ transform: translateY(-20px); opacity:0; }
    to{ transform: translateY(0); opacity:1; }
}

.kala .logout-box .icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background: rgba(255,255,255,0.2);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:15px;
}
.kala .logout-box > h2{
    margin-bottom:10px;
    font-weight:600;
}

.kala .logout-box > p{
    opacity:0.85;
    font-size:14px;
}
.btn-yes{
    background:#fff;
    color:#333;
    font-weight:600;
    border-radius:10px;
    padding:10px 25px;
    transition:0.3s;
}
.btn-yes:hover{
    background:#000;
    color:#fff;
}
.btn-no{
    border:1px solid #fff;
    color:#fff;
    border-radius:10px;
    padding:10px 25px;
    transition:0.3s;
}
.btn-no:hover{
    background:#fff;
    color:#333;
}
.kala .logout-box .small{
    font-size:12px;
    margin-top:15px;
    opacity:0.7;
}










/* CARD STYLE */
body.dark .page-card{
    background: rgba(255,255,255,0.08);
    color:#fff;
}
.page-card{
    background:#fff;
    padding:20px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}
.page-card .topbar{
    display:flex;
    background: inherit !important;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}
.table-responsive{
    border-radius:12px;
    overflow:auto;
}
.table-responsive .table-custom{
    width:100%;
    border-spacing:0;
    min-width:1300px;
}
.table-responsive .table-custom thead{
    background:green;
    color:#fff;
    position:sticky;
    top:0;
    z-index:1;
}
.table-responsive .table-custom thead tbody tr{
    border: inherit !important;
}
.table-responsive .table-custom thead tbody tr:hover{
    background: inherit !important;
}
.table-responsive .table-custom thead tbody tr th{
    padding:12px;
    font-size:13px;
    text-align:center;
}
.table-responsive .table-custom thead tbody tr th td{
    padding:10px;
    text-align:center;
    font-size:13px;
    border-bottom:1px solid #eee;
}
.action-group .btn-del{
    background:#ef4444;
    color:#fff;
    padding:5px 10px;
    border-radius:6px;
    text-decoration:none;
    font-size:12px;
}
.action-group .btn-print{
    background:#06b6d4;
    color:#000;
    padding:5px 10px;
    border-radius:6px;
    text-decoration:none;
    font-size:12px;
}
.action-group .action-group a{
    margin:2px;
    display:inline-block;
}
.action-group .theme-btn{
    border:none;
    padding:6px 12px;
    border-radius:8px;
    cursor:pointer;
}





/* ❌ CLOSE ICON */
.close-btn{
    position:absolute;
    right:165px;
    top:10px;
    font-size:20px;
    color:#000;
    cursor:pointer;
    background:#eee;
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
}
.close-btn:hover{
    background:red;
    color:#fff;
}
.slip_in .slip{
    width:1200px;
    max-width:100%;
    margin:auto;
    background:#fff;
    border:2px solid #2c3e50;
    padding:15px;
    position: relative;
    margin-top: 40px;
}
.slip_in .slip .header{
    text-align:center;
    border-bottom:1px solid #000;
    padding-bottom:40px;
}
.slip_in .slip .header .phones{
    position:absolute;
    right:20px;
    top:10px;
    text-align:right;
}
.slip_in .slip .header .phones{
        display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
.slip_in .slip .header .phones .phone_in{
    margin-left: 10px !important;
}
.slip_in .slip .header .phones a{
    display: block;
    color: #000;
    font-size: 17px;
    text-decoration: none;
    margin-bottom: 5px;
    font-weight: 600;
    margin-bottom: 7px;
}
.slip_in .slip .header h1{
    margin: 0;
    color: #000;
    letter-spacing: 2px;
    font-size: 50px;
    font-weight: 800;
}
.slip_in .slip .header .address{
        font-size: 18px;
    margin-top: 3px;
    font-weight: 600;
}
.slip_in .slip .row{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    margin-top:8px;
    gap:10px;
}
.slip_in .slip .row .col .field{
    border-bottom:1px dotted #000;
    width:100%;
    padding:3px 5px;
    min-height:18px;
    font-size: 20px !important;
}
.col{ flex:1; }
.w50{ flex:0 0 48%; }
.w30{ flex:0 0 30%; }

.slip_in .slip .rupee-box{
    border:2px solid red;
    width:160px;
    height:32px;
    display:flex;
    align-items:center;
    padding-left:10px;
    margin-top:12px;
    font-weight:bold;
}
.slip_in .slip .declaration{
    margin-top:12px;
    font-size:13px;
    border-top:1px dashed #000;
    padding-top:8px;
}
.slip_in .slip .declaration b{
    font-size: 20px;
}
.slip_in .slip .footer{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
}
.sig .signature{
    text-align: right;
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.sig .sign{
    font-size: 18px;
    font-weight: 600;
}
.thn{
        font-size: 19px;
    font-weight: 600;
}
.decla_in{
        display: flex;
    justify-content: space-between;
    align-items: center;
}
@media(max-width: 991px){
    .decla_in{
        display: block;
    }
}
.dec > ul{
    padding: 2px;
}
.dec > ul > li{
        font-size: 18px;
    display: flex;
    margin-bottom: 7px;
    align-items: baseline;
}
.dec > ul > li > b{
    margin-right: 5px;
}









.header_in .header{
    text-align:center;
    margin-bottom:20px;
}
.header_in .header > h2{
    margin:0;
    margin-bottom: 20px;
}
.info > p{
    margin-bottom: 10px;
}
.header_in .info{
    margin-bottom:15px;
}
.header_in table{
    width:100%;
    border-collapse: collapse;
}
.header_in table tr th,td{
    border:1px solid #000;
    padding:8px;
    text-align:center;
}
.total{
    font-weight:bold;
    background:#f2f2f2;
}

.print-btn{
    margin-top:15px;
}

/* ❌ CLOSE ICON RIGHT SIDE */
.close-btn{
    position:fixed;
    top:20px;
    right:20px;
    font-size:26px;
    font-weight:bold;
    color:red;
    text-decoration:none;
    cursor:pointer;
    background: none !important;
}

.close-btn:hover{
    transform:scale(1.2);
    color:black;
}

@media print{
    .print-btn,
    .close-btn{
        display:none;
    }
}






.page {
    width: 800px;
    margin: auto;
    padding: 20px;
}
.page .ticket {
    border: 2px solid #333;
    padding: 15px;
}
.page .ticket .header {
    text-align: center;
}
.page .ticket .header h1 {
    color: red;
    margin: 0;
}
.page .ticket .details{
    margin-top: 15px;
    font-size: 14px;
}
.page .ticket .details .row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.page .ticket .details .row .line{
    border-bottom: 1px dashed #000;
    flex: 1;
    margin-left: 5px;
}
.page .ticket .details .amount-box {
    margin-top: 15px;
    border: 1px solid red;
    width: 120px;
    padding: 5px;
    font-weight: bold;
}
.back-page {
    width: 800px;
    margin: auto;
    padding: 20px;
    font-size: 13px;
    line-height: 1.6;
}

/* Print settings */
@media print {
    .page {
        page-break-after: always;
    }
}



.main{
    margin-left:240px;
    padding:20px;
}
.sidebar{
    width:240px;
    height:100vh;
    position:fixed;
    background: linear-gradient(135deg,#667eea,#764ba2);
    padding:20px;
    color: #fff !important;
}

.sidebar a{
    display:block;
    color:#fff;
    padding:10px;
    text-decoration:none;
    border-radius:8px;
    margin:5px 0;
}
.main .box{
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
    margin-bottom:18px;
}
.kpi a{
    margin-right: 10px;
    text-decoration: none;
    padding: 12px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
    text-align: center;
    align-items: center;
    font-weight: 500;
}
.main .box .table th{
    background:#f3f4f6;
}



.card{
    border:none;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.profile-box{
    background:linear-gradient(135deg,#667eea,#764ba2);
    color:#fff;
    padding:20px;
    border-radius:12px;
    position:relative;
}

.close-icon{
    position:absolute;
    right:-33px;
    top:0;
    color:#000;
    font-size:20px;
    text-decoration:none;
}

.pass-wrapper{
    position:relative;
}

.pass-wrapper i{
    position:absolute;
    right:10px;
    top:12px;
    cursor:pointer;
    color:#666;
}

.card form table{
    border: 1px solid grey !important;
}
.bg-light .container form .form-control{
    border: 1px solid grey !important;
}
.col-md-6 form-control{
    border: 1px solid grey !important;
}
.main_in > h2{
    text-align: left !important;
}
.form-control option{
    color: #000 !important;
}
.jaanu .container > h2{
    margin-bottom: 20px !important;
}
.jaanu .container > p{
    margin-bottom: 10px !important;
}

.history_out .container{
    width: 90%;
    margin: auto;
    background: #fff;
    padding: 20px;
    position: relative;
    margin-top: 100px;
    height: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.col-md-4 .form-control{
    border: 1px solid grey;
}
.table>thead{
    border: 1px solid grey !important;
}
.table-bordered>:not(caption)>*{
    border: 1px solid grey !important;
}
.mb-3 .form-control{
    border: 1px solid grey;
}
.lali tr th{
    text-align: center;
}






/*profile*/

/* ADMIN BAR */
.tt-adminbar{
    width:100%;
    display:flex;
    justify-content:flex-end;
    padding:10px 20px;
    /*background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);*/
}

/* PROFILE BOX */
.tt-profile-box{
    position:relative;
    cursor:pointer;
    font-weight:600;
}

/* DROPDOWN */
.tt-dropdown-menu{
    display:none;
    position:absolute;
    right:0;
    top:25px;
    background:#fff;
    min-width:280px;
    border-radius:8px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    overflow:hidden;
}

.tt-dropdown-menu a{
    display:block;
    padding:10px 15px;
    text-decoration:none;
    color:#333;
}

.tt-dropdown-menu a:hover{
    background:#f2f2f2;
}

/* HOVER EFFECT */
.tt-profile-box:hover .tt-dropdown-menu{
    display:block;
}




















.dear{
    background: linear-gradient(135deg,#667eea,#764ba2);
    font-family: 'Poppins', sans-serif;
}
.dear .profile-card{
    max-width: 450px;
    margin: 60px auto;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.profile-title{
    text-align:center;
    font-weight:600;
    margin-bottom:20px;
}
.profile-card form .form-control{
    border-radius:10px;
    padding:10px;
}
.btn-custom{
    width:100%;
    padding:10px;
    border-radius:10px;
    background:#667eea;
    color:#fff;
    border:none;
    font-weight:600;
}
.btn-custom:hover{
    background:#5a67d8;
}
.label{
    font-weight:500;
    margin-top:10px;
}




.tt_in{
    background: linear-gradient(135deg,#667eea,#764ba2);
    font-family: 'Poppins', sans-serif;
}

.otp-card{
    max-width: 450px;
    margin: 70px auto;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align:center;
}

.otp-title{
    font-weight:600;
    margin-bottom:20px;
}

.form-control{
    border-radius:10px;
    padding:10px;
}

.btn-custom{
    width:100%;
    padding:10px;
    border-radius:10px;
    background:#667eea;
    color:#fff;
    border:none;
    font-weight:600;
}

.btn-custom:hover{
    background:#5a67d8;
}

.icon{
    font-size:50px;
    margin-bottom:10px;
}





/*responsive*/
/* =========================
   RESPONSIVE MEDIA QUERY
========================= */

/* Tablet */
@media (max-width: 992px) {
    .sidebar {
        width: 220px;
    }

    .main {
        margin-left: 220px;
        padding: 15px;
    }

    h2 {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

    .sidebar a {
    padding: 8px 12px;
    font-size: 14px;
    width: 100%;
    }

    .main {
        margin-left: 0;
        padding: 12px;
    }

    .form-box {
        padding: 10px;
    }

    .row {
        display: block;
    }

    .col-md-6 {
        width: 100% !important;
    }

    table {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    h2 {
        font-size: 18px;
        text-align: center;
    }

    .sidebar h2 {
        font-size: 18px;
    }

    .btn {
        font-size: 14px;
    }

    table th, table td {
        padding: 6px;
        font-size: 12px;
    }
}

@media(max-width: 767px){
    body.dark .form-control{
        width: 100% !important;
    }
    .series-btns button{
        width: 100% !important;
    }
}



@media (max-width: 768px) {

    .box {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .box table {
        min-width: 700px; /* horizontal scroll enable */
    }

    .box th,
    .box td {
        font-size: 13px;
        padding: 8px;
        white-space: nowrap;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {

    .box table {
        min-width: 650px;
    }

    .box th,
    .box td {
        font-size: 12px;
        padding: 6px;
    }

    .btn {
        font-size: 11px;
        padding: 4px 8px;
    }
}





/* =========================
   BOOKING TABLE RESPONSIVE
========================= */

@media (max-width: 992px) {

    .wrapper {
        padding: 10px;
    }

    .card {
        padding: 10px;
    }

    table th,
    table td {
        font-size: 13px;
        padding: 8px;
        white-space: nowrap;
    }
}

/* =========================
   MOBILE VIEW (MAIN FIX)
========================= */

@media (max-width: 768px) {

    .wrapper {
        padding: 8px;
    }

    .card {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 1100px; /* horizontal scroll enable */
    }

    table th {
        font-size: 12px;
    }

    table td {
        font-size: 12px;
        padding: 6px;
    }

    .btn {
        font-size: 11px;
        padding: 4px 8px;
    }

    .badge {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    table {
        min-width: 1000px;
    }

    table th,
    table td {
        font-size: 11px;
        padding: 5px;
    }

    .btn {
        font-size: 10px;
        padding: 3px 6px;
    }

    .no-print {
        display: none; /* mobile pe action hide (optional) */
    }
}




/* =========================
   DASHBOARD RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {

    .main {
        margin-left: 220px;
        padding: 15px;
    }

    .card-box h2 {
        font-size: 24px;
    }

    .chart-box {
        padding: 10px;
    }
}

/* =========================
   MOBILE VIEW (MAIN FIX)
========================= */

@media (max-width: 768px) {

    /* SIDEBAR FULL WIDTH */
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

    .sidebar a {
        font-size: 14px;
        padding: 8px 12px;
    }

    /* MAIN CONTENT */
    .main {
        margin-left: 0;
        padding: 10px;
    }

    h2 {
        font-size: 20px;
        text-align: center;
    }

    /* PROFILE BAR */
    .tt-adminbar {
        position: static;
        text-align: center;
        padding: 8px;
    }

    /* CARDS STACK */
    .row {
        display: block;
    }

    .col-md-4 {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .card-box {
        padding: 15px;
        text-align: center;
    }

    .card-box h2 {
        font-size: 22px;
    }

    /* CHARTS */
    .chart-box {
        width: 100%;
        overflow-x: auto;
        padding: 10px;
    }

    canvas {
        width: 100% !important;
        height: auto !important;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    h2 {
        font-size: 18px;
    }

    .card-box h2 {
        font-size: 20px;
    }

    .card-box h4 {
        font-size: 14px;
    }

    .sidebar a {
        font-size: 12px;
    }

    p {
        font-size: 13px;
    }
}
/* =========================
   ADMIN TOP BAR RESPONSIVE
========================= */

@media (max-width: 768px) {

    .tt-adminbar {
        position: static;
        width: 100%;
        padding: 10px;
        display: flex;
        justify-content: center;
        background: #2563eb;
    }

    .tt-profile-box {
        position: relative;
        font-size: 14px;
        padding: 8px 12px;
        background: #222;
        border-radius: 6px;
        color: #fff;
    }

    /* DROPDOWN FIX */
    .tt-dropdown-menu {
        position: absolute;
        top: 45px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        background: #fff;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        display: none;
        z-index: 999;
    }

    .tt-profile-box:hover .tt-dropdown-menu {
        display: block;
    }

    .tt-dropdown-menu a {
        display: block;
        padding: 10px;
        font-size: 13px;
        text-align: center;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .tt-profile-box {
        font-size: 13px;
        padding: 6px 10px;
    }

    .tt-dropdown-menu {
        width: 160px;
    }

    .tt-dropdown-menu a {
        font-size: 12px;
        padding: 8px;
    }
}

/* =========================
   LOGIN STABILITY FIX
========================= */

* {
    box-sizing: border-box;
}

/* =========================
   MOBILE FIX (MAIN)
========================= */

@media (max-width: 768px) {

    body.jalsaa {
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* 🔥 stop horizontal shake */
    }

    .jalsaa_in {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }

    .login-box {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        padding: 25px 18px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        animation: none; /* 🔥 remove shaky animations if any */
    }

    .logo {
        font-size: 22px;
        text-align: center;
    }

    .subtitle {
        font-size: 13px;
        text-align: center;
        margin-bottom: 15px;
    }

    .form-control {
        width: 100%;
        display: block;
        margin-bottom: 12px;
        padding: 10px;
        font-size: 14px;
    }

    .btn-login {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .error {
        text-align: center;
        font-size: 13px;
        padding: 8px;
    }
}

/* =========================
   SMALL MOBILE FIX
========================= */

@media (max-width: 480px) {

    .login-box {
        max-width: 320px;
        padding: 20px 15px;
    }

    .logo {
        font-size: 20px;
    }

    .subtitle {
        font-size: 12px;
    }

    .form-control {
        font-size: 13px;
        padding: 9px;
    }

    .btn-login {
        font-size: 13px;
        padding: 9px;
    }
}
@media(max-width: 991px){
    .slip_in .slip .header{
        margin-top: 70px !important;
    }
}
@media(max-width: 767px){
    .slip_in .slip .header{
        margin-top: 70px !important;
    }
}
@media(max-width: 575px){
    .jalsaa{
        height: inherit !important;
        display: block;
        background: linear-gradient(135deg,#667eea,#764ba2);
    }
    .jalsaa::before, .jalsaa::after{
            content: "";
     position: relative; 
    /* width: 600px; */
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    animation: move 10s infinite alternate;
    background: linear-gradient(135deg,#667eea,#764ba2);
    }
    .kpi a{
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    .dear{
        display: flex;
    }
}
