/*==================================================
SCRAP METAL COUNCIL — SKILLS SIMULATION (DEMO)
Version 3 — fonts (Helvetica) + colours matched to screenshot
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    height:100%;
}

body{
    background:#ecf0f5;
    font-family:"Source Sans Pro", Helvetica, Arial, sans-serif;
    font-size:14px;
    color:#444;
    font-weight:400;
}

/*=========================
TOP BAR
=========================*/

.topbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:50px;
    background:#dd4b39;
    display:flex;
    align-items:center;
    justify-content:space-between;
    z-index:9999;
    box-shadow:0 1px 2px rgba(0,0,0,.15);
}

.topbar-left{
    display:flex;
    align-items:center;
}

.brand{
    width:230px;
    height:50px;
    background:#d73925;
    color:#fff;
    font-size:18px;
    font-weight:300;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    line-height:1.15;
    padding:0 10px;
}

.menu-btn{
    width:50px;
    height:50px;
    border:none;
    background:transparent;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    flex:none;
}

.menu-btn:hover{
    background:rgba(255,255,255,.1);
}

.topbar-right{
    display:flex;
    align-items:center;
    margin-right:15px;
}

.nav-icon{
    position:relative;
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    transition:.25s;
}

.nav-icon:hover{
    background:rgba(255,255,255,.12);
}

.badge{
    position:absolute;
    top:7px;
    right:6px;
    font-size:10px;
    line-height:1;
    color:#fff;
    border-radius:10px;
    padding:3px 5px;
    font-weight:600;
}

.green{
    background:#00a65a;
}

.yellow{
    background:#f39c12;
}

.red{
    background:#dd4b39;
}

.user-menu{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    margin-left:6px;
    cursor:pointer;
}

.user-menu i{
    font-size:24px;
}

/*=========================
LAYOUT
=========================*/

.page-wrapper{
    display:flex;
    margin-top:50px;
    min-height:calc(100vh - 50px);
}

/*=========================
SIDEBAR
=========================*/

.sidebar{
    width:230px;
    background:#fff;
    border-right:1px solid #d2d6de;
    min-height:100%;
}

.user-panel{
    display:flex;
    align-items:center;
    padding:15px;
    border-bottom:1px solid #f4f4f4;
}

.avatar{
    font-size:48px;
    color:#999;
    margin-right:12px;
}

.user-panel h4{
    font-size:15px;
    font-weight:600;
    margin-bottom:4px;
}

.user-panel p{
    font-size:12px;
    color:#666;
}

.online{
    color:#00a65a;
    font-size:10px;
}

.search-box{
    padding:12px;
    position:relative;
}

.search-box input{
    width:100%;
    height:35px;
    border:1px solid #d2d6de;
    border-radius:3px;
    padding:0 38px 0 10px;
    outline:none;
}

.search-box button{
    position:absolute;
    right:16px;
    top:16px;
    border:none;
    background:none;
    color:#777;
    cursor:pointer;
}

.sidebar-menu{
    list-style:none;
}

.sidebar-menu li{
    border-top:1px solid #f4f4f4;
}

.sidebar-menu a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#444;
    padding:14px 18px;
    transition:.2s;
}

.sidebar-menu a:hover{
    background:#f5f5f5;
}

.sidebar-menu i{
    width:18px;
    text-align:center;
}

/*=========================
CONTENT
=========================*/

.content{
    flex:1;
    padding:15px;
}

.content-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.content-header h1{
    font-family:"Source Sans Pro",sans-serif;
    font-size:60px;
    font-weight:300;
    line-height:1.1;
    color:#333;
    margin-bottom:15px;
}

.breadcrumb{
    list-style:none;
    display:flex;
    align-items:center;
    gap:6px;
    color:#6c7a86;
    font-size:13px;
}

/* ">" separators between breadcrumb items */
.breadcrumb li{
    display:flex;
    align-items:center;
    gap:6px;
}

.breadcrumb li + li::before{
    content:">";
    color:#9aa7b0;
    margin-right:2px;
}

.breadcrumb li:first-child{
    color:#444;
}

.breadcrumb li:last-child{
    color:#7a848d;
}

/*=========================
SUCCESS
=========================*/

.alert-success{
    display:none;
    background:#00a65a;
    color:#fff;
    font-weight:700;
    border-radius:3px;
    padding:16px 18px;
    margin-bottom:20px;
    line-height:1.7;
    font-size:15px;
}

.alert-success strong{
    font-weight:700;
}

.alert-success i{
    font-style:italic;
}

/* the black emphasis line inside the green box (needs the .loc-note span) */
.alert-success .loc-note{
    color:#000;
}

/*=========================
INTRO
=========================*/

.intro{
    font-size:21px;
    font-weight:400;
    color:#444;
    margin-bottom:20px;
}

/*=========================
FORM
=========================*/

form{
    max-width:560px;
}

.form-group{
    margin-bottom:18px;
}

label{
    font-size:18px;
    font-weight:600;
    color:#333;
}

.dealer-label{
    color:#00a65a;
}

input{
    height:50px;
    padding:10px 16px;
    font-size:18px;
    border:1px solid #d2d6de;
    border-radius:0;
}

input:focus{
    border-color:#3c8dbc;
    outline:none;
}

.captcha-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:8px;
}

.captcha-row img{
    width:130px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:3px;
}

/*==================================================
BUTTONS
==================================================*/

.submit-btn{

width:95px;

height:42px;

font-size:16px;

font-weight:400;

border-radius:3px;

}

.submit-btn:hover{
    background:#367fa9;
}

/*==================================================
LOADING
==================================================*/

.loading{
    display:none;
    text-align:center;
    margin-top:30px;
}

.spinner{
    width:45px;
    height:45px;
    margin:0 auto 15px;
    border:4px solid #ddd;
    border-top:4px solid #3c8dbc;
    border-radius:50%;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/*==================================================
FOOTER
==================================================*/

.main-footer{
    height:50px;
    background:#fff;
    border-top:1px solid #d2d6de;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 15px;
    color:#444;
    font-size:13px;
}

.footer-left a{
    color:#3c8dbc;
    text-decoration:none;
    font-weight:600;
}

.footer-right{
    color:#444;
}



/*==================================================
OVERLAY
==================================================*/

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    display:none;
    z-index:9000;
}

.overlay.show{
    display:block;
}

/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

.brand{
    width:180px;
    font-size:17px;
}

.content-header{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

.content-header h1{
    font-size:44px;
}

}
.black{
    display:block;
    color:#000 !important;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
    margin:10px 0;
}

/*==================================================
MOBILE  (matched to screenshot 2 — single-row header)
==================================================*/

@media(max-width:768px){

/* ---- single-row red header: hamburger left, icons right ---- */
.topbar{
    height:50px;
}

.brand{
    display:none;          /* no brand title in the mobile bar (per screenshot) */
}

.topbar-right{
    margin-right:6px;
}

.user-menu span{
    display:none;
}

.nav-icon{
    width:44px;
    font-size:17px;
}

/* ---- standard 50px offset ---- */
.page-wrapper{
    display:block;
    margin-top:50px;
}

.sidebar{
    position:fixed;
    top:50px;
    left:-230px;
    width:230px;
    height:calc(100vh - 50px);
    z-index:9999;
    transition:left .3s ease;
}

.sidebar.open{
    left:0;
}

.content{

padding:20px;

}

/* ---- breadcrumb: full-width band ABOVE the title ---- */
.content-header{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:14px;
}

.breadcrumb{

background:#dfe4ea;

padding:12px 16px;

font-size:18px;

border-radius:2px;

}



.content-header h1{

font-size:66px;

font-weight:300;

line-height:1.05;

margin-top:12px;

margin-bottom:18px;

}



/* ---- form ---- */
.captcha-row{
    flex-direction:column;
    align-items:flex-start;
}

.submit-btn{

width:120px;

height:50px;

font-size:18px;

}

/* ---- footer ---- */
.main-footer{
    flex-wrap:wrap;
    justify-content:flex-start;
    gap:4px;
    height:auto;
    padding:14px 15px;
}

}
.black{
    display:block;
    color:#000 !important;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
    margin:10px 0;
}

/*==================================================
SMALL PHONES
==================================================*/

@media(max-width:480px){

.content-header h1{
    font-size:34px;
}

.avatar{
    font-size:40px;
}

.search-box{
    padding:10px;
}

.sidebar-menu a{
    padding:13px 15px;
}

}
.black{
    display:block;
    color:#000 !important;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
    margin:10px 0;
}