section.one {
    /*padding-top: 100px;*/
}

.form-input-div {
    width: 40%;
}

.col-md .form-input-div {
    width: 100%;
}

.form-input-div label {
    font-size: 1.2rem;
}

.form-input-div .sub-text {
    font-size: 0.8rem;
    color: crimson;
    font-style: italic;
    text-align: center;
}

.form-input {
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}

textarea.form-input {
    /*width: 100%;*/
    border-radius: 30px;
    padding: 20px;
}

option[disabled=""] {
    color: #80328B99;
}

.form-input::placeholder {
    color: #80328B99;
}

.form-button {
    padding: 0.5rem 3rem;
    color: white;
    border: none;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.tab {
    padding: 0.625rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

.tab.active {
    background-color: white;
    color: #80328B;
    border-radius: 50px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.form-redirect a {
    font-weight: 600;
    color: crimson;
}

.custom-select-btn {
    color: #80328B99;
}

.custom-select-btn i {
    color: #80328B;
}

.custom-select-btn::after {
    position: absolute;
    border: none;
    vertical-align: middle;
}

#map {
    width: 100%;
    /*height: 100%;*/
    border-radius: 50px;
    aspect-ratio: 2.33 / 1;
}

.leaflet-control-attribution.leaflet-control {
    display: none;
}

.opt-div {
    border-right: #2a185b 2px solid;
}

.opt-btn {
    border: solid 2px #2a185b;
    border-radius: 50px;
    width: 30%;
    text-align: center;
    background-color: transparent;
}

.opt-btn.active {
    border: none;
    background-color: white;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.opt-div-2 .form-input-div {
    width: 70%;
}

.dropdown-menu {
    margin-top: 5px !important;
    border-radius: 15px !important;
    padding-inline: 10px !important;
}

.dropdown-item {
    border-radius: 25px !important;
}

.dropdown-item:hover {
    background-color: #dfcce2 !important;
}

/* Custom table styling */
table {
    background-color: transparent !important;
}

.custom-table thead,
.custom-table tr:nth-child(even) {
    background-color: #FFFFFF40; /* Light transparent background */
}

.custom-table tr:nth-child(odd) {
    background-color: transparent; /* Fully transparent */
}

.custom-table th, .custom-table td {
    padding: 12px;
    color: #2A185B;
    vertical-align: middle;
}

.custom-table tbody tr td:nth-child(1) {
    font-weight: 600;
}

.custom-table img {
    width: 24px;
    height: 24px;
}

.highlight {
    color: #80328B;
    font-weight: bold;
}

.custom-table .grand-total td {
    font-weight: bold;
    color: #D70040 !important; /* Red color */
}

.custom-table .red-pill {
    display: block;
    color: #D70040 !important;
    border-radius: 20px;
    text-align: center;
    padding-inline: 5px;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    border: #D70040 1px solid !important;
}

/* Hide the default checkbox */
input[type="checkbox"] {
    display: none;
}

/* Custom checkbox container */
.custom-checkbox {
    width: 24px;
    height: 24px;
    display: inline-block;
    border: 3px solid #2E1A58; /* Dark purple border */
    background-color: #D5C4F4; /* Light purple background */
    border-radius: 4px;
    position: relative;
}

/* Checkmark (hidden by default) */
.custom-checkbox::after {
    content: '✔';
    font-size: 18px;
    color: #2E1A58; /* Dark purple checkmark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

/* Show checkmark when checked */
input[type="checkbox"]:checked + .custom-checkbox::after {
    display: block;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.radio-circle {
    width: 24px;
    height: 24px;
    border: 2px solid purple;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.radio-circle .inner-circle {
    width: 14px;
    height: 14px;
    background: purple;
    border-radius: 50%;
    display: none;
}

.radio-label {
    font-size: 18px;
    font-weight: 500;
    color: purple;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .radio-container .inner-circle {
    display: block;
}

.upload-container {
    display: flex;
    align-items: center;
}

.upload-box {
    cursor: pointer;
    background: white;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    aspect-ratio: 18 / 7;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.upload-box.shop-image-active {
    padding: 10px;
    justify-content: start;
}

.upload-text {
    color: rgba(128, 50, 139, 0.6);
}

.upload-icon {
    color: purple;
    font-size: 18px;
}

.file-input {
    display: none;
}

.filename {
    color: #D70040;
}

.upload-box .shop-images-container {
    display: none;
}

.upload-box.shop-image-active .shop-images-container {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 10px;
    overflow-x: scroll;
    overflow-y: hidden;
}

.shop-image-active #shopImagesLabel {
    display: none;
}

.shop-image {
    height: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    background-color: rgba(128, 50, 139, 0.6);
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-image-add {
    height: 100%;
    aspect-ratio: 1;
    text-align: center;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(128, 50, 139, 0.6);
    border: rgba(128, 50, 139, 0.6) 2px solid;
}

.contact-us-div .form-input-div {
    width: 100%;
}

@media (width < 576px) {
    .col-md .form-input-div,
    .form-input-div {
        width: 100%;
    }

    .opt-btn {
        width: 50%;
    }

    .opt-div {
        border: none;
        margin-bottom: 30px;
    }

    .opt-div-2 .form-input-div {
        width: 100%;
    }

    .custom-table {
        font-size: 0.8rem;
    }

    .custom-table .red-pill {
        display: inline-block;
        padding-inline: 5px;
    }

    .container.two > div {
        flex-direction: column;
        gap: 5px;
    }

    .tab {
        width: 100%;
        text-align: center;
    }


    #map {
        width: 100%;
        border-radius: 20px;
        aspect-ratio: 2.33 / 1;
    }

    .upload-box {
        border-radius: 15px;
    }
}

@media (width < 1024px) {
    .upload-box {
        border-radius: 15px;
    }

    .shop-image-add, .shop-image {
        border-radius: 10px;
    }

    .shop-image-add {
        padding: 10px;
        aspect-ratio: auto;
    }

    .shop-image-add br {
        display: none;
    }

    .upload-box.shop-image-active .shop-images-container {
        height: max-content;
        align-items: center;
    }
}