.dlb-button-wrapper {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

.dlb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2271b1; /* You can change this to match your theme color */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Ensure the button links keep text color on hover */
.dlb-btn:hover {
    background-color: #135e96;
    color: #ffffff;
    text-decoration: none;
}

/* Submenu Styling */
.dlb-dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    list-style: none !important;
    padding: 8px 0 !important;
    margin: 8px 0 0 0 !important;
    border-radius: 4px;
    border: 1px solid #e2e4e7;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* Show dropdown when hovering over the wrapper */
.dlb-button-wrapper:hover .dlb-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dlb-dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.dlb-dropdown-menu li a {
    color: #3c434a;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dlb-dropdown-menu li a:hover {
    background-color: #f0f0f1;
    color: #2271b1;
    text-decoration: none;
}
