/* General button styling */
.dropbtn {
    background-color: #3498db;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style for the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: relative;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1;
    border: 1px solid #ddd;
    margin-top: 5px;
}

/* Change color of button on hover */
.dropbtn:hover {
    background-color: #2980b9;
}

/* Show the dropdown content when the button is clicked */
.dropdown.active .dropdown-content {
    display: block;
}

/* Icon styling */
.fas {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    transition: transform 0.3s ease; /* Smooth rotation effect */
}

/* Rotate the arrow when dropdown is active */
.dropdown.active .fas {
    transform: rotate(180deg); /* Rotates the arrow */
}
