body{
    margin:0;
    font-family:Arial,sans-serif;
}

.login-body{
    background:#000;
}

.login-container{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.login-card{
    width:400px;
    background:#111;
    padding:40px;
    border-radius:12px;
    text-align:center;
}

.logo{
    width:120px;
    margin-bottom:20px;
}

.login-card h2{
    color:#F2F2F2;
    margin-bottom:20px;
}

.form-control{
    background:#1a1a1a;
    border:1px solid #333;
    color:#fff;
}

.btn-orange{
    background:#F36C21;
    color:white;
}

.sidebar{
    width:300px;
    height:100vh;
    position:fixed;
    background:#000;
    border-right:1px solid #222;
    overflow-y:auto;
}


.logo-area{
    text-align:center;
    margin-bottom:30px;
}

.sidebar-logo{
    width:120px;
    margin-bottom:15px;
}

.sidebar a{
    display:block;
    padding:14px 18px;
    color:#F2F2F2;
    text-decoration:none;
    border-radius:8px;
    margin-bottom:6px;
    transition:0.3s;
}

.sidebar a:hover{
    background:#F36C21;
    color:#fff;
}

.main-content{
    margin-left:280px;
    padding:30px;
    min-height:100vh;
    background:#121212;
    color:#F2F2F2;
}

.stat-card{
    background:#1a1a1a;
    border-left:5px solid #F36C21;
    padding:20px;
    border-radius:10px;
    height:100%;
}

.stat-card h6{
    color:#999;
    margin-bottom:10px;
}

.stat-card h2{
    color:#F2F2F2;
    margin:0;
}
/* Form Labels */
label{
    color:#F2F2F2;
    font-weight:600;
    margin-bottom:8px;
}

/* Form Headings */
.card h3{
    color:#F36C21;
    font-weight:700;
}

/* Form Inputs */
.form-control{
    background:#1a1a1a !important;
    border:1px solid #333 !important;
    color:#F2F2F2 !important;
}

/* Placeholder Color */
.form-control::placeholder{
    color:#888 !important;
}

/* Select Fields */
select.form-control{
    color:#F2F2F2 !important;
}

/* Textareas */
textarea.form-control{
    color:#F2F2F2 !important;
}
.form-control{

    background:#1a1a1a !important;

    color:#F2F2F2 !important;

    border-color:#F36C21 !important;

    box-shadow:0 0 0 0.15rem rgba(243,108,33,.25) !important;
}

.wizard-step{
    display:none;
}

.wizard-step.active{
    display:block;
}

.progress{
    height:12px;
    background:#222;
}

.progress-bar{
    background:#F36C21;
}

.wizard-nav{
    display:flex;
    justify-content:space-between;
    margin-top:30px;
}

.appliance-row{
    background:#161616;
    border:1px solid #333 !important;
}

.btn-orange{
    background:#F36C21;
    color:#fff;
    border:none;
}

.btn-orange:hover{
    background:#d85b18;
    color:#fff;
}



.table-dark{
    --bs-table-bg:#1a1a1a;
}

.table-hover tbody tr:hover{
    background:#252525;
}

.table td,
.table th{
    vertical-align:middle;
}
.review-card{

    background:#111;

    border:1px solid #333;

    border-radius:12px;

    padding:25px;

}

.review-section{

    margin-bottom:30px;

}

.review-section h5{

    color:#F36C21;

    border-bottom:1px solid #333;

    padding-bottom:10px;

    margin-bottom:15px;

}

.review-row{

    display:flex;

    justify-content:space-between;

    padding:8px 0;

    border-bottom:1px dashed #333;

}

.review-label{

    color:#aaa;

    font-weight:600;

}

.review-value{

    color:#fff;

    text-align:right;

    max-width:60%;

}
.bg-primary{
    background-color:#F36C21 !important;
}

.btn-primary{
    background-color:#F36C21 !important;
    border-color:#F36C21 !important;
}
.btn-sm{
    margin:3px !important;
}

.card{
    background-color:black !important;
    color:#F2F2F2 !important;
}
.radio-label{
    color:#F2F2F2;
}
h1,h2,h3,h4,h5,h6,p{
    color:#F2F2F2 !important;
}

/* Sidebar Active */

.sidebar a.active {

    background: rgba(255,255,255,0.15);

    border-left:4px solid #F36C21;

    color:#ffffff;

}


/* Mobile Toggle Button */

.sidebar-toggle{

    background:none;

    border:none;

    color:#fff;

    font-size:24px;

    padding:0;
    cursor:pointer;

}

.mobile-header{

    display:none;

}
@media(min-width:769px){

    .mobile-header{

        display:none !important;

    }

}



@media(max-width:768px){

.mobile-header{

    display:flex;

    align-items:center;

    gap:15px;

    height:60px;

    padding:0 20px;

    background:#000;

    border-bottom:1px solid #333;

    position:relative;

    z-index:9997;

}





.sidebar{

    width:280px;

    height:100vh;

    position:fixed;

    top:0;

    left:0;

    transform:translateX(-280px);

    transition:transform 0.3s ease;

    z-index:9998;

}


.sidebar.show{

    transform:translateX(0);
    box-shadow:5px 0 20px rgba(0,0,0,0.5);

}



.sidebar-toggle{

    display:block;

}



.main-content{

    margin-left:0;

    padding:20px;

    width:100%;

}


}

.swal2-title{
    color:black !important;
}