/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.cf-field__help{
    font-size: 12px;
    font-weight: normal !important;
}
.bt_sst_setup_guide .modal-card {
    max-width: 800px;
    width: 100%;
}

/* Progress bar styling */
.bt_sst_setup_guide .progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    position: relative;
}

.bt_sst_setup_guide .progress-bar {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    position: absolute;
    top: 20px;
    z-index: 1;
    border-radius: 5px;
}

.bt_sst_setup_guide .progress-bar-fill {
    width: 0;
    height: 100%;
    background-color: #00d1b2;
    transition: width 0.4s ease;
    border-radius: 5px;
}

.bt_sst_setup_guide .progress-step {
    z-index: 3;
    width: 30px;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.4s ease;
    position: relative;
    margin-top: 7px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bt_sst_setup_guide .progress-step.active {
    background-color: #00d1b2;
}

/* Wizard Steps */
.bt_sst_setup_guide .wizard-step {
    display: none;
}

.bt_sst_setup_guide .wizard-step.active {
    display: block;
}

.bt_sst_setup_guide .modal-card-body {
    padding: 30px 40px;
    font-family: 'Poppins', sans-serif;
}

/* Welcome Step Styling */
.bt_sst_setup_guide .wizard-step.welcome {
    text-align: center;
    padding: 40px 20px;
}

.bt_sst_setup_guide .wizard-step.welcome .welcome_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt_sst_setup_guide .wizard-step.welcome .welcome_heading {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
}

.bt_sst_setup_guide .wizard-step.welcome .welcome_note {
    font-size: 1.1em;
    color: #666;
    margin-top: 15px;
}

/* Button Styling */
.bt_sst_setup_guide .stw_wizard_button {
    border-radius: 30px;
    font-weight: 600;
}

.bt_sst_setup_guide #prev-step {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #555;
}

.bt_sst_setup_guide #next-step {
    background-color: #00d1b2;
    color: white;
}

.bt_sst_setup_guide #next-step:hover {
    background-color: #00c0a8;
}

.bt_sst_setup_guide #prev-step:hover {
    background-color: #e5e5e5;
}

.bt_sst_setup_guide .modal-card-head {
    color: white;
}

.bt_sst_setup_guide .modal-card-head .modal-card-title {
    font-size: 1.5em;
}

.bt_sst_setup_guide .modal-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bt_sst_setup_guide .modal-card-foot {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #f5f5f5;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .bt_sst_setup_guide .modal-card-body {
        padding: 20px;
    }

    .bt_sst_setup_guide .modal-card {
        width: 95%;
    }
}

.shipment-tracking_page_crb_carbon_fields_container_shipment_tracking #wpbody-content .carbon-theme-options h2{
    display: flex;
    justify-content: space-between;
}
 /* Basic styling for the popup */
 .bt_sst_popup {
    width: 50%;
    z-index: 999;
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.bt_sst_popup input {
    display: block;
    margin-bottom: 10px;
    padding: 5px;
    width: 100%;
}
.bt_sst_popup button {
    padding: 5px 10px;
}
.bt_sst_overlay {
    z-index: 99;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.bt_sst_close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.bt_sst_close:hover {
    color: #ff0000;
}

/* reset wp default button styles */
.button:focus{
    background-color: unset !important;;
}