.dropdown-container {
    display: flex;
    flex-direction: column;        
}

.dropdown {
    display: flex;
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-btn {
    width: 100%;    
    background-color: #333;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 1rem;
}

.dropdown-btn-right {
    width: 100%;    
    background-color: #333;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: right;
    gap: 1rem;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    width: 100%;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: black;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: block;        
}

.dropdown:hover .dropdown-content {
    display: block;
    position: relative;
}

@media (min-width: 700px) {
    .dropdown-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }
    .dropdown-content {
        display: flex;
        position: relative;
        min-height: 150px;
    }

    .dropdown-btn,
    .dropdown-btn-right {
        justify-content: center;
        cursor: none;
        min-height: 100px;
    }
}

@media (min-width: 700px) and (max-width: 1000px) {
    .dropdown-btn,
    .dropdown-btn-right {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 200px;
    }
}