    /* Stiluri pentru containerul principal */
.ws-btn-group {
    position: relative;
    display: inline-flex;
}

/* Butonul de opțiuni */
.ws-options-button {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 6px !important;
    background-color: transparent !important;
    transition: all 0.2s ease-in-out !important;
    border: 1px solid transparent !important;
}

.ws-options-button:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
}

.ws-options-button i {
    font-size: 22px !important;
    color: #6c757d !important;
    transition: color 0.2s ease-in-out;
}

.ws-options-button:hover i {
    color: var(--bs-primary) !important;
}

.ws-options-button:focus {
    box-shadow: none !important;
    background-color: rgba(var(--bs-primary-rgb), 0.05) !important;
}

.ws-options-button:active {
    background-color: rgba(var(--bs-primary-rgb), 0.15) !important;
}

/* Meniul dropdown */
.ws-dropdown-menu {
    border: none;
    border-radius: 0.5rem;
}

/* Header pentru secțiuni */
.ws-header {
    margin: 0;
    padding: 0.5rem 1rem;
}

/* Elementele de meniu */
.ws-menu-item {
    cursor: pointer !important;
    transition: all 0.2s ease;
}

.ws-menu-item:hover {
    background-color: rgba(0, 123, 255, 0.1);
    transform: translateX(5px);
}

/* Conținutul elementelor */
.ws-item-content {
    flex: 1;
    min-width: 0;
}

/* Checkbox personalizat */
.ws-checkbox {
    padding-left: 0;
}

.ws-check-input {
    margin: 0;
}

/* Text în elemente */
.ws-text {
    padding-top: 2px;
}

/* Badge personalizat */
.ws-badge {
    transition: all 0.2s ease;
    min-width: 24px;
    text-align: center;
}

.ws-menu-item:hover .ws-badge {
    transform: scale(1.1);
}

/* Secțiunea cu scroll */
.ws-scrollable-section {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ws-scrollable-section::-webkit-scrollbar {
    width: 6px;
}

.ws-scrollable-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.ws-scrollable-section::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.ws-scrollable-section::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Lista de foldere */
.ws-folder-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Animații */
.animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}
