button{
    background-color: var(--dark-blue);
    color: var(--main-font-color);
    border-radius: 10px;
    border: 3px solid var(--secondary-bg-color)
}

/* Style for the custom dropdown container */
.custom-dropdown {
    position: relative;
    display: inline-block;
    /* border-radius: 10px; */
    }

    /* Style for the dropdown content */
    .custom-dropdown .dropdown-content {
    display: none;
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    }

    /* Style for the dropdown options */
    .custom-dropdown .dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    }

    /* Hover effect on dropdown options */
    .custom-dropdown .dropdown-content a:hover {
    background-color: var(--secondary-bg-color);
    border-radius: 10px;
    }