/* Wrapper for each dropdown and its content */
.dropdown-wrapper {
    display: flex;
    flex-direction: column; /* Stack dropdown and content vertically */
    align-items: flex-start;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.dropdown-wrapper select.dropdowncontent {
    width: 100%; /* Dropdown width matches content */
}

.dropdowncontent-content {
    display: none;
    width: 100%;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 10px; /* Space between dropdown and content */
}
