    @keyframes aim-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    .spin-icon { animation: aim-spin .6s linear infinite; display: inline-block; }

    .aim-category-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text);
        margin: 0 0 4px 0;
        width: 100%;
    }

    .aim-custom-select {
        position: relative;
    }

    .aim-custom-select__trigger {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 0, 0, .03);
        border: 1px solid var(--aim-border);
        color: var(--text);
        padding: 6px 12px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        min-width: 180px;
        justify-content: space-between;
        transition: border-color 0.2s;
    }

    .aim-custom-select__trigger:hover {
        border-color: var(--aim-primary, #E8C547);
    }

    .aim-custom-select__arrow {
        transition: transform 0.2s;
        font-size: 12px;
    }

    .aim-custom-select.open .aim-custom-select__arrow {
        transform: rotate(180deg);
    }

    .aim-custom-select__dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: var(--aim-bg, #fff);
        border: 1px solid var(--aim-border);
        border-radius: 6px;
        list-style: none;
        padding: 4px 0;
        margin: 0;
        z-index: 9999;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .aim-custom-select.open .aim-custom-select__dropdown {
        display: block;
    }

    .aim-custom-select__option {
        padding: 8px 14px;
        color: var(--text);
        cursor: pointer;
        font-size: 14px;
        transition: background 0.15s;
    }

    .aim-custom-select__option:hover {
        background: rgba(0, 0, 0, .04);
    }

    .aim-custom-select__option.active {
        color: var(--aim-primary, #E8C547);
        font-weight: 600;
    }

    /* ====== CATEGORII TIP FOLDERE (CSS MINIM, IZOLAT) ====== */
    /* ====== CATEGORII TIP FOLDERE: FARA SAGETI, LOOK CA IN FILTRE ====== */

    /* bar de sus (Back + titlu) ramane ok */
    .aim-cat-folderbar {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0 6px 0;
    }

    .aim-cat-back {
        border: 0;
        background: #D4A832;
        color: #fff;
        border-radius: 3px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    }

    .aim-cat-current {
        font-size: 18px;
        font-weight: 700;
        color: var(--text);
    }

    /* Folder row: imitatie checkbox (patrat gol) */
    .aim-cat-folder {
        cursor: pointer;
    }

    .aim-cat-folder .aim-cat-fakebox {
        width: 10px;
        /* Lățimea vizibilă a săgeții */
        height: 10px;
        /* Înălțimea vizibilă a săgeții */
        border-top: 2px solid #E8C547;
        /* Latura de sus */
        border-right: 2px solid #E8C547;
        /* Latura din dreapta */

        display: inline-block;
        flex: 0 0 auto;

        /* Rotația care transformă colțul în săgeată spre dreapta (>) */
        transform: rotate(45deg);

        /* Ajustare pentru aliniere verticală dacă e nevoie */
        margin-right: 10px;
        vertical-align: middle;
    }

    /* Aliniere ca la randurile tale */
    .aim-cat-folder .aim-cat-label {
        color: var(--text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
