.bernarion-job-filter {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: var(--bernarion-light-border-color) 1px solid;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(118, 73, 208, 0.08);
}

.bernarion-filter-group {
    margin-bottom: 30px;
}

.bernarion-filter-group:last-child {
    margin-bottom: 0;
}

.bernarion-filter-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--bernarion-dark-purple) !important;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bernarion-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bernarion-filter-tag {
    display: inline-block;
    cursor: pointer;
    line-height: 1.2 !important;
}

.bernarion-filter-tag input[type="checkbox"] {
    display: none;
}

.bernarion-filter-tag .tag-label {
    display: inline-block;
    padding: 8px 14px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    transition: all 0.3s ease;
    user-select: none;
    font-weight: 500;
}

.bernarion-filter-tag:hover .tag-label {
    border-color: var(--bernarion-dark-purple);
    color: var(--bernarion-dark-purple);
    background-color: rgba(172, 130, 255, 0.05);
}

.bernarion-filter-tag.active .tag-label {
    border-color: var(--bernarion-dark-purple);
    color: var(--bernarion-dark-purple);
}

.bernarion-filter-tag.active .tag-label {
    background: linear-gradient(135deg, var(--bernarior-purple) 0%, var(--bernarion-light-purple) 100%);
    border-color: transparent;
    color: #ffffff;
}

.bernarion-filter-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(118, 73, 208, 0.1);
}

.bernarion-filter-btn,
.bernarion-filter-reset {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.bernarion-filter-btn {
    background: linear-gradient(135deg, var(--bernarior-purple) 0%, var(--bernarion-light-purple) 100%);
    color: white;
}

.bernarion-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 73, 208, 0.25);
}

.bernarion-filter-reset {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
}

.bernarion-filter-reset:hover {
    background-color: #efefef;
    border-color: var(--bernarior-purple);
    color: var(--bernarior-purple);
}

@media (max-width: 768px) {
    .bernarion-job-filter {
        padding: 20px;
    }

    .bernarion-filter-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .bernarion-filter-tag .tag-label {
        padding: 6px 12px;
        font-size: 12px;
    }

    .bernarion-filter-actions {
        flex-direction: column;
        gap: 10px;
    }

    .bernarion-filter-btn,
    .bernarion-filter-reset {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

/**
*
*/
.bernarion-filter-search {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
}

.bernarion-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0 !important;
    border-radius: 20px !important;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

/* Loader stílus */
.bernarion-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.bernarion-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--bernarion-dark-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.bernarion-loader p {
    color: var(--bernarion-dark-purple);
    font-size: 14px;
    margin: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}