body{
    margin: 0;
    background-color: #c8c3b2;
}
/* Container for centering the select element */
.select-container {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    padding-bottom: 25px;
    background-color:#1a1c1b;
}

@media (max-width: 530px) {
    .select-container {
      flex-wrap: wrap; /* Allow elements to wrap to the next line */
    }
  
    .select-container .select-wrapper {
      width: 90%; /* Make each select take full width in mobile */
      margin-bottom: 10px; /* Add space between selects */
    }
    .select-container select{
        width: 100%;
    }
  }

/* Styling the select element */
.styled-select {
    appearance: none; /* Remove default dropdown arrow */
    background-color: #fff;
    border: 1px solid #6f6958;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    padding: 10px 40px 10px 16px; /* Add padding and space for the arrow */
    width: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 5px;
}
.select-wrapper {
    position: relative; /* Position relative to allow absolute positioning of the arrow */
    display: inline-block;
  }

/* Create the Thin Chevron Arrow using the ::after pseudo-element */
.select-wrapper::after {
    content: "";
    position: absolute;
    right: 18px; /* Position the chevron near the right edge */
    top: 50%;
    transform: translateY(-50%); /* Vertically center the arrow */
    width: 8px;
    height: 8px;
    border-left: 1px solid #333; /* Left side of the chevron */
    border-bottom: 1px solid #333; /* Bottom side of the chevron */
    transform: translateY(-50%) rotate(-45deg); /* Create the diagonal chevron shape */
    pointer-events: none; /* Prevent the chevron from interfering with interaction */
}


/* Hover effect */
.styled-select:hover {
    border-color: gray;
}

/* Focus effect */
.styled-select:focus {
    border-color: gray;
    outline: none;
    box-shadow: none;
}

/* Option styling */
.styled-select option {
    background-color: #fff;
    padding: 10px;
    font-size: 16px;
}

/* Option hover effect */
.styled-select option:hover {
    background-color: #f0f8ff;
}