.cbb-resume-builder{
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

.cbb-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:40px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.cbb-card h2{
    margin:0 0 10px;
    font-size:32px;
}

.cbb-card p{
    color:#666;
}

.cbb-progress{
    margin:30px 0;
}

.cbb-progress-bar{
    height:10px;
    background:#ececec;
    border-radius:20px;
    overflow:hidden;
}

.cbb-progress-fill{
    width:16.66%;
    height:100%;
    background:#2271b1;
    transition:.3s;
}

.cbb-progress-text{
    margin-top:10px;
    font-weight:600;
}

.cbb-step{
    display:none;
}

.cbb-step.active{
    display:block;
}

.cbb-field{
    margin-bottom:20px;
}

.cbb-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.cbb-required{
    color:#d63638;
}

.cbb-field input,
.cbb-field select,
.cbb-field textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    box-sizing:border-box;
}

.cbb-field input:focus,
.cbb-field select:focus,
.cbb-field textarea:focus{
    outline:none;
    border-color:#2271b1;
}

.cbb-navigation{
    margin-top:40px;
    display:flex;
    justify-content:space-between;
}

.cbb-navigation button{
    padding:12px 28px;
    border:none;
    border-radius:8px;
    background:#2271b1;
    color:#fff;
    cursor:pointer;
    font-size:15px;
}

.cbb-navigation button:hover{
    background:#135e96;
}

@media(max-width:768px){

    .cbb-card{
        padding:20px;
    }

    .cbb-card h2{
        font-size:24px;
    }

    .cbb-navigation{
        flex-direction:column;
        gap:10px;
    }

    .cbb-navigation button{
        width:100%;
    }

}

/* =====================================
   EXPERIENCE SECTION
===================================== */

.cbb-experience-item {

    border:1px solid #ddd;

    padding:20px;

    margin-bottom:20px;

    border-radius:10px;

    background:#fafafa;

}


/* =====================================
   CURRENT JOB CHECKBOX ALIGNMENT
===================================== */


.cbb-current-job-wrapper {

    display:flex;

    align-items:center;

    gap:8px;

    margin-top:10px;

}


.cbb-current-job-wrapper input[type="checkbox"] {

    width:16px;

    height:16px;

    margin:0;

    flex:none;

}


.cbb-current-job-wrapper label {

    margin:0;

    font-weight:600;

    line-height:16px;

    cursor:pointer;

}



/* =====================================
   DISABLED END DATE
===================================== */


.cbb-end-date:disabled {

    background:#f1f1f1;

    color:#777;

    cursor:not-allowed;

}




/* =====================================
   ADD EXPERIENCE BUTTON
===================================== */


#cbb-add-experience {

    margin-top:15px;

    padding:12px 20px;

    border:none;

    border-radius:8px;

    background:#2271b1;

    color:#fff;

    cursor:pointer;

    font-size:15px;

}


#cbb-add-experience:hover {

    background:#135e96;

}