.customizer {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #FAF9F9; /* Adjust the background color as needed */
    transition: filter 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: start;
}




/* Flex row centered container for the stage area */
.customizer-stage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}



/* General Slider Styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 9px;
    background: none; /* Background will be set dynamically with JS */
    outline: none;
    cursor: pointer;
    margin-bottom: 10px;
}

/* Track for WebKit browsers (e.g., Chrome, Safari) */
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 9px;
    border-radius: 5px;
    background: #ffffff; /* Default track background color */
    border: 1px solid #cdcdcd;
}

/* Track for Mozilla Firefox */
input[type="range"]::-moz-range-track {
    width: 100%;
    height: 9px;
    border-radius: 5px;
    background: #ffffff;
}

/* Thumb Styling for WebKit */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #5ec2eb;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-top: -7px; /* Center the thumb */
    transition: background-color 0.3s, border-color 0.3s;
}

/* Thumb Styling for Mozilla */
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: #5ec2eb;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}



/* General Button Styling */
button, [type=submit], [type=button] {
    cursor: pointer !important;
    transition: all 0.1s ease !important; /* Smooth hover transition */
    
}

/* Hover State */
button:hover, [type=submit]:hover, [type=button]:hover {

    transform: scale(1.01) !important; /* Slight shrink effect on click */
}

/* Active State */
button:active, [type=submit]:active, [type=button]:active {

    transform: scale(1.01) !important; /* Slight shrink effect on click */
}

/* Disabled State */
button:disabled, [type=submit]:disabled, [type=button]:disabled {
    color: #cccccc !important; /* Light gray text for disabled buttons */
    cursor: not-allowed !important;
}





/* Change border color for focused input fields */
input:focus, textarea:focus, select:focus {
    outline: none !important; /* Remove default focus outline */
    border-color: #6EC1E4 !important; /* Set the border color to blue on focus */
    box-shadow: 0 0 5px rgba(110, 193, 228, 0.5) !important; /* Add a subtle blue glow */
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important; /* Smooth transition */
}




.customizer-home-content {
    padding-top: 100px;
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.view-div {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    padding: 20px;
}

.view-title-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-info h3 {
    margin: 0;
    font-size: 25px;
}

/* Mobile-specific CSS rule */
@media (max-width: 767px) {
    .view-info h3 {
        font-size: 22px; /* Adjust font size for mobile */
    }

}



.view-select-button:hover {
    background-color: #6EC1E4; /* Adjust hover color as needed */
}

.view-image-container {
    flex-shrink: 0;
}

.view-image-container img {
    max-width: 100px;
    border-radius: 5px;
}



    #loading-div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
        flex-direction: column;
    }

    .loading-icon {
        margin-bottom: 20px;
        width: 100px; /* Adjust size as needed */
        height: 100px; /* Adjust size as needed */
    }

    #loading-div p {
        font-size: 24px;
    }