.elementor-3817 .elementor-element.elementor-element-f9b9200{margin-top:100px;margin-bottom:100px;padding:0px 20px 0px 20px;z-index:4;}.elementor-3817 .elementor-element.elementor-element-02210fd > .elementor-element-populated{margin:0px 0px 0px 21px;--e-column-margin-right:0px;--e-column-margin-left:21px;padding:5px 5px 5px 5px;}.elementor-3817 .elementor-element.elementor-element-bc88308 > .elementor-widget-container{margin:20px 0px 0px 0px;}.elementor-3817 .elementor-element.elementor-element-bc88308 .wpr-archive-title{text-align:center;margin:0 auto;color:#333333;font-family:"Jost", Sans-serif;font-size:27px;font-weight:600;}.elementor-3817 .elementor-element.elementor-element-bc88308 .wpr-archive-title:after{text-align:center;margin:0 auto;}.elementor-3817 .elementor-element.elementor-element-bc88308 .wpr-archive-description{text-align:center;margin:0 auto;color:#666666;font-size:14px;}.elementor-3817 .elementor-element.elementor-element-bc88308 .wpr-archive-title span{color:#555555;}@media(max-width:1024px) and (min-width:768px){.elementor-3817 .elementor-element.elementor-element-02210fd{width:100%;}}@media(max-width:1024px){.elementor-3817 .elementor-element.elementor-element-f9b9200{margin-top:50px;margin-bottom:100px;padding:0px 20px 0px 20px;}.elementor-3817 .elementor-element.elementor-element-02210fd > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}}/* Start custom CSS for shortcode, class: .elementor-element-ea5ec8a *//* Container */
#dress-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), 
                -5px -5px 15px rgba(255, 255, 255, 0.5);
}

/* Select Dropdown Styling */
#dress-selection select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    color: #333;
    cursor: pointer;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1), 
                inset -2px -2px 5px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-in-out;
}

/* Hover & Focus Effects */
#dress-selection select:hover,
#dress-selection select:focus {
    outline: none;
    background: #f0f0f0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Dropdown Arrow */
#dress-selection select {
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140'><polygon fill='%23333' points='70,100 10,40 130,40'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 30px;
}

/* Dropdown Options */
#dress-selection select option {
    background: #ffffff;
    color: #333;
    font-size: 14px;
}

/* Fix for Select Visibility */
select::-ms-expand {
    display: none;
}

/* Results Styling */
#dress-results {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #ff9800;
}/* End custom CSS */