/* Reset default margin and padding, set font and box-sizing */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Hero section styling to center content */
.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(#826d6b, #d3b9c2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Selector container */
.selector {
    width: 350px;
}

/* Styling for dropdown select field */
#selectField {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* Arrow icon in select field with rotation transition */
#selectField img {
    width: 12px;
    transition: transform 0.5s;
}

/* Dropdown list styling */
#list {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    overflow: hidden;
}

/* Styling for each dropdown option */
.options {
    width: 100%;
    padding: 15px 0 15px 70px;
    list-style: none;
    cursor: pointer;
    position: relative;
}

/* Icon positioning in each option */
.options img {
    width: 25px;
    position: absolute;
    top: 12px;
    left: 25px;
}

/* Hover effect for dropdown options */
.options:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Class to hide dropdown list */
.hide {
    visibility: hidden;
}

/* Class to rotate arrow icon */
.rotate {
    transform: rotate(180deg);
}
