/* Container styling */
.dropdown-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Hide the menu by default */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
    z-index: 10;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    margin-top: 10px;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
}

.dropdown-content a strong {
    display: block;
    font-size: 14px;
    color: #2c3e50;
}

.dropdown-content a span {
    font-size: 11px;
    color: #7f8c8d;
}

/* Show the menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Adjust the launch button for the dropdown */
.btn-launch {
    border: none;
    cursor: pointer;
    width: 100%;
}