 /* Basic styling for the navigation bar */
    /* Navigation Bar Styles */
    .sub-nav {
        text-align: center;
        /* Center the buttons */
        padding: 10px 0;
        /* Add some padding */
        background-color: transparent;
        /* Transparent background */
    }

    .sub-nav h6 {
        display: inline-block;
        /* Make buttons inline */
        color: #7a7a7a;
        /* Dark text color */
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 16px;
        font-weight: normal;
        /* Normal font weight by default */
        transition: all 0.3s ease;
        /* Smooth transition for hover effects */
    }

    .step.active {
        font-weight: bold;
        /* Bold text on hover */
        color: #000;
    }

    .step:hover {
        color: #7a7a7a;
        font-weight: bolder;
    }

    .input-container {
        position: relative;
        margin: 20px 0;
    }

    /* Input box styling */
    .input-container input {
        width: 100%;
        padding: 12px;
        border: 2px solid #2d2d2d;
        border-radius: 15px;
        font-size: 14px;
        outline: none;
        background-color: #EDEDED;
        font-weight: 600;
    }

    /* Label styling */
    .input-container label {
        position: absolute;
        top: -10px;
        /* Adjust to position the label on the border */
        left: 30px;
        /* Adjust to position the label on the left */
        background-color: #EDEDED;
        /* Match the background color */
        padding: 0 5px;
        font-size: 14px;
        color: #333;
        font-weight: 500;
        z-index: 111;
    }

    .shipping_btn{
        background-color: #2d2d2d;
        border-radius: 10px;
        width: 6em;
        border:none;
        color: white;
        margin-left: 12px;
        margin-top: 10px;
    }
    /* Checkbox container styling */
    .checkbox-container {
        margin: 20px 0;
        display: flex;
        align-items: center;
    }

    /* Checkbox styling */
    .checkbox-container input[type="checkbox"] {
        margin-right: 10px;
        width: 16px;
        height: 16px;
    }

    /* Checkbox label styling */
    .checkbox-container label {
        font-size: 14px;
        color: #333;
    }

    /* Link styling */
    .checkbox-container a {
        color: #007BFF;
        text-decoration: none;
    }

    .checkbox-container a:hover {
        text-decoration: underline;
    }

    /* Navigation buttons container */
    .navigation-buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    /* Button styling */
    .navigation-buttons button {
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        background-color: #242424;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .navigation-buttons button:hover {
        background-color: #686868;
    }

    .navigation-buttons button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    h5{
        font-size: 18px;
        font-weight: bolder;
    }

    th, td {
        padding: 15px;
        border-bottom: 1.2px solid #2d2d2d;
    }

    .summary {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        font-size: 18px;
        color: #666;
    }

    .input-container select {
        width: 100%;
        padding: 12px;
        border: 2px solid #2d2d2d;
        border-radius: 15px;
        font-size: 14px;
        outline: none;
        background-color: #EDEDED;
        font-weight: 600;
    }