/* Container for the shortcode buttons */
.dv-header-menu-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 40px; /* Adjust gap between the buttons */
}

/* Individual Button Style - matching image_2d5fbd */
.welcome-item-menu {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF !important;
    width: auto;
    transition: opacity 0.2s ease;
}


/* Icon Container - matching image_2d095e */
/* Icon Style: Removes italics and fixes alignment */
.welcome-item-icon i {
    font-style: normal !important; /* Forces normal text instead of italic */
    margin-right: 12px; /* Spacing between icon and title */
    font-size: 30px; /* Matching size from your reference images */
    display: flex;
    align-items: center;
}

.welcome-item-icon {
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Label Style */
.welcome-item-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}


/* Mobile: show icons only */
@media (max-width: 1279px) {
    .dv-header-menu-container {
        gap: 16px;
    }

    .welcome-item-title {
        display: none;
    }

    .welcome-item-icon,
    .welcome-item-icon i {
        font-size: 25px;
        margin-right: 0px; /* Spacing between icon and title */

    }
    .menu-item .sc_layouts_item_icon {
        color: #ffffff;
    }


}


/* Mobile: show icons only */
@media (max-width: 767px) {
    .dv-header-menu-container {
        gap: 15px;
    }

    .welcome-item-title {
        display: none;
    }

    .welcome-item-icon,
    .welcome-item-icon i {
        font-size: 20px;
        margin-right: 0px; /* Spacing between icon and title */

    }
    .menu-item .sc_layouts_item_icon {
        color: #ffffff;
    }
    .menu-item .sc_layouts_login_details {
        display: none;
    }



}

