.bernarion-dashboard div[data-elementor-type="header"],
.bernarion-dashboard .bernarion_subheader {
    display: none !important
}

.bernarion-applications div[data-elementor-type="header"] {
    display: none !important
}

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: #f5f6fa;
}

.dashboard-sidebar {
    width: 280px;
    background: linear-gradient(135deg, var(--bernarior-purple) 0%, var(--bernarion-dark-purple) 100%);
    color: white;
    padding: 30px 0;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 0px #000;
    z-index: 1000;
}

.dashboard-sidebar::-webkit-scrollbar {
    width: 6px;
}

.dashboard-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.dashboard-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* Felhasználó info */
.dashboard-user-info {
    text-align: center;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.dashboard-sidebar-logo {
    max-width: 40px !important;
}

.dashboard-user-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    object-fit: cover;
}

.dashboard-user-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFF !important;
    word-break: normal;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.user-type-badge {
    display: inline-block;
    background-color: var(--bernarion-dark-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigáció */
.dashboard-nav ul {
    list-style: none;
    padding-left: 0;
}

.dashboard-nav li {
    margin: 0;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: #FFF !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.dashboard-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 30px;
}

.dashboard-nav li.active a {
    background-color: var(--bernarion-light-purple);
    color: white;
    border-left: 4px solid #FFF;
}

.dashboard-nav i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Logout */
.dashboard-nav-logout {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.dashboard-nav-logout a {
    color: rgba(255, 255, 255, 0.7);
}

.dashboard-nav-logout a:hover {
    color: var(--bernarion-yellow);
    background-color: rgba(255, 255, 255, 0.05);
}

/* ===================== MAIN CONTENT ===================== */
.dashboard-main {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
}

/* ===================== SECTIONS ===================== */
.dashboard-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.3s ease;
    border: 1px solid var(--bernarion-light-border-color);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #EEE;
}

.dashboard-section-header h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.dashboard-section-header .elementor-button {
    background-color: var(--bernarior-purple);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.dashboard-section-header .elementor-button:hover {
    background-color: var(--bernarion-dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 73, 208, 0.4);
}

.dashboard-section-header .elementor-button i {
    margin-right: 8px;
}

/* ===================== FORMS ===================== */
.dashboard-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid var(--bernarion-light-border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="file"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bernarior-purple);
    box-shadow: 0 0 0 3px rgba(118, 73, 208, 0.1);
}

.form-group input[type="file"] {
    padding: 8px;
    cursor: pointer;
}

/* Current logo / header preview */
.form-group .current-logo,
.form-group .current-header {
    max-width: 200px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bernarion-light-border-color);
}

/* ===================== TABLES ===================== */
.job-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.job-table thead {
    background-color: #f9f9f9;
}

.job-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--bernarior-purple);
    border-bottom: 2px solid var(--bernarion-light-border-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-table td {
    padding: 15px;
    border-bottom: 1px solid var(--bernarion-light-border-color);
}

.job-table tbody tr {
    transition: background-color 0.3s ease;
}

.job-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Job status badge */
.job-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-status-publish {
    background-color: rgba(76, 189, 151, 0.15);
    color: var(--bernarion-dark-green);
}

.job-status-pending {
    background-color: rgba(118, 73, 208, 0.15);
    color: var(--bernarior-purple);
}

.job-status-draft {
    background-color: rgba(253, 231, 76, 0.15);
    color: #856404;
}

/* ===================== ACTION BUTTONS ===================== */
.btn-action {
    display: inline-block;
    padding: 8px 12px;
    margin-right: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: #FFF !important;
}

.btn-edit {
    background-color: var(--bernarior-purple);
    color: white;
}

.btn-edit:hover {
    background-color: var(--bernarion-dark-purple);
}

/*
.btn-view {
    background-color: var(--bernarion-dark-green);
    color: white;
}
*

.btn-view:hover {
    background-color: #3a9a78;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
}

.btn-delete:hover {
    background-color: #c82333;
}

/* ===================== NOTICES ===================== */
.dashboard-notice {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.dashboard-notice.success {
    background-color: rgba(76, 189, 151, 0.15);
    color: var(--bernarion-dark-green);
    border-left: 4px solid var(--bernarion-dark-green);
}

.dashboard-notice.error {
    background-color: rgba(220, 53, 69, 0.15);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.dashboard-notice.warning {
    background-color: rgba(253, 231, 76, 0.15);
    color: #856404;
    border-left: 4px solid var(--bernarion-yellow);
}

/* ===================== EMPTY STATE ===================== */
.dashboard-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.dashboard-empty-state p {
    font-size: 16px;
    margin-bottom: 20px;
}

.dashboard-empty-state .elementor-button {
    background-color: var(--bernarior-purple);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.dashboard-empty-state .elementor-button:hover {
    background-color: var(--bernarion-dark-purple);
}

/* ===================== ACTIVE PACKAGE BOX ===================== */
.active-package-box {
    background: linear-gradient(135deg, var(--bernarior-purple) 0%, var(--bernarion-dark-purple) 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.active-package-box h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.active-package-box p {
    font-size: 18px;
    font-weight: 600;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .dashboard-wrapper {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px 0;
    }

    .dashboard-main {
        margin-left: 0;
        padding: 20px;
    }

    .dashboard-section {
        padding: 20px;
    }

    .dashboard-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dashboard-nav a {
        padding: 12px 20px;
    }

    .job-table {
        font-size: 13px;
    }

    .job-table th,
    .job-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .dashboard-sidebar {
        width: 100%;
    }

    .dashboard-main {
        padding: 15px;
    }

    .dashboard-section {
        padding: 15px;
    }

    .dashboard-section-header h2 {
        font-size: 18px;
    }

    .job-table {
        font-size: 12px;
    }

    .btn-action {
        display: block;
        margin-bottom: 8px;
        width: 100%;
        text-align: center;
    }
}

/* ===================== PACKAGE CARDS - ACTIVE STATE ===================== */
.bernarion-package-card.is-active {
    border: 2px solid var(--bernarior-purple);
    background: linear-gradient(135deg, rgba(118, 73, 208, 0.03) 0%, rgba(76, 189, 151, 0.03) 100%);
    position: relative;
}

.package-active-badge {
    position: absolute;
    top: -15px;
    width: 150px;
    left: calc(50% - 75px);
    background: linear-gradient(135deg, var(--bernarior-purple) 0%, var(--bernarion-dark-purple) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(118, 73, 208, 0.3);
}

.bernarion-btn-disabled {
    background-color: #d0d0d0 !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.bernarion-btn-disabled:hover {
    background-color: #d0d0d0 !important;
    transform: none;
}

.bernarion_load_job_applies {
    margin-right: 5px;
}

/* ===================== CV UPLOADER ===================== */
.cv-replace-hint {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
    font-style: italic;
}

/* Dropzone */
.cv-dropzone {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 50px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f9fafb;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cv-dropzone:hover,
.cv-dropzone.dragover {
    border-color: var(--bernarior-purple);
    background-color: #f0ebf8;
}

.cv-dropzone.dragover {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(118, 73, 208, 0.2);
}

.cv-dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.cv-upload-icon {
    width: 56px;
    height: 56px;
    color: var(--bernarior-purple);
    opacity: 0.6;
}

.cv-dropzone-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.cv-dropzone-subtitle {
    margin: 0;
    font-size: 13px;
    color: #9ca3af;
}

/* Kiválasztott fájl */
.cv-selected-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 0 20px;
}

.cv-selected-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bernarior-purple);
    font-weight: 600;
    font-size: 15px;
}

.cv-selected-name {
    word-break: break-all;
}

.cv-clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ef4444;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.cv-clear-btn:hover {
    transform: scale(1.2);
}

/* Submit gomb disabled állapot */
.bernarion-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .cv-existing-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .cv-file-actions {
        width: 100%;
    }

    .btn-delete,
    .btn-view {
        flex: 1;
        justify-content: center;
    }

    .cv-dropzone {
        padding: 40px 15px;
        min-height: 180px;
    }

    .cv-dropzone-title {
        font-size: 16px;
    }
}

/***
*
*/
.application-card {
    margin-bottom: 20px;
    position: relative;
}

.application-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.application-status:after {
    display: none !important;
}

.application-date {
    color: #6b7280;
    font-size: 12px;
}

.application-date:after {
    display: none;
}

.orders-table td,
.orders-table th {
    text-align: center
}

.status-badge {
    padding: 5px 10px;
}

/**
*
*/
bernarion-status-published .dashboard-job-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
}

.dashboard-job-list .bernarion-featured-job-card {
    flex: 1;
    margin-right: 20px;
    max-width: 350px;
}

/* Status Labels */
.bernarion-status-label {
    padding: 5px 20px;
    border-radius: 10px;
}

.bernarion-status-draft {
    background-color: #f0e6ff;
    color: #7649d0;
    border: 1px solid #d9cfe8;
}

.bernarion-status-pending {
    background-color: #fff3e0;
    color: #f57c00;
    border: 1px solid #ffe0b2;
}

.bernarion-status-published {
    background-color: #e6fffa;
    color: #2c9a78;
    border: 1px solid #b2f5ea;
}

.dashboard-job-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 100px;
}

.bernarion-reject-btn {
    background-color: #ef4444;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    width: auto;
}

/**
*
*/
.cv-existing-box {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #EEE
}

/* ===================== CV UPLOADER ===================== */
/* ===================== CV UPLOADER ===================== */
.cv-existing-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    gap: 16px;
}

.cv-file-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* CV lista stílus */
#cv-list {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cv-existing-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 220px;
    /* Opcionális: fix szélesség a rácsos elrendezéshez */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cv-existing-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #ddd;
    transform: translateY(-2px);
}

/* Módosított szelektorok az új div miatt */
.bernarion-document-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.bernarion-doc-link {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    word-break: break-word;
}

.bernarion-doc-link:hover {
    color: var(--bernarion-dark-purple);
}

/* A fájl dátumát a document item-en belülre helyezhetjük, ha szükséges */
.cv-file-date {
    font-size: 11px;
    color: #aaa;
    margin-top: -8px;
    /* Közelebb húzza a névhez */
}

.cv-file-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    /* Lenyomja az aljára a gombot */
}

.btn-delete {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: none;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    color: #f44336;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-delete:hover {
    color: #c12a20;
    /* Sötétebb piros hover-re */
}

.btn-delete svg {
    width: 13px;
    height: 13px;
}

.bernarion-file-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.bernarion-file-icon-link:hover {
    transform: scale(1.05);
}

/* Dokumentumok szekció */
.bernarion-application-documents {
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.bernarion-documents-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.bernarion-documents-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bernarion-document-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.bernarion-document-item:hover {
    background: #f0f0f0;
}

.bernarion-doc-link {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    flex: 1;
}

.bernarion-doc-link:hover {
    color: var(--bernarion-dark-purple);
}

/* Akciók */
.bernarion-application-actions {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-width: 140px;
    gap: 12px;
}

.bernarion-reject-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.bernarion-reject-btn:hover {
    background: #da190b;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
    transform: translateY(-1px);
}

.bernarion-reject-btn i {
    font-size: 14px;
}

.bernarion-rejected-text {
    font-size: 12px;
    color: #999;
    font-style: italic;
    text-align: center;
}

.bernarion-application-row td {
    vertical-align: middle;
}

.action-highlight {
    background: var(--bernarion-light-purple);
    color: #FFF !important;
}

.action-highlight:hover {
    background: var(--bernarion-dark-purple);
    color: #FFF !important;
    transition: all 0.12s ease-in-out;
    -webkit-transition: all 0.12s ease-in-out;
}

/**
*
*/
/* Extra termékek grid */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.extra-product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.extra-product-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

.extra-product-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.extra-product-card .description {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px 0;
    flex-grow: 1;
    line-height: 1.5;
}

.extra-product-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 16px;
}

.bernarion-extra-buy-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bernarion-extra-buy-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: scale(1.02);
}

.bernarion-extra-buy-btn:disabled,
.bernarion-extra-buy-btn.loading {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .extra-product-card {
        padding: 16px;
    }

    .extra-product-card h3 {
        font-size: 16px;
    }
}

/**
* Email settings
*/
.email-settings-form button[id*="mceu"] {
    background: transparent !important
}

/**
* Jelentkezések kezelése
*/
.bernarion-application-row.in_progress {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.bernarion-application-row.rejected {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    opacity: 0.8;
}

.bernarion-action-buttons {
    display: flex;
    gap: 8px;
}

.bernarion-action-button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bernarion-pending-btn {
    background-color: #ffc107;
    color: #000;
}

.bernarion-pending-btn:hover {
    background-color: #ffb300;
}

.bernarion-reject-btn {
    background-color: #dc3545;
    color: #fff;
}

.bernarion-reject-btn:hover {
    background-color: #c82333;
}

.bernarion-delete-btn {
    background-color: #6c757d;
    color: #fff;
}

.bernarion-delete-btn:hover {
    background-color: #5a6268;
}

.bernarion-pending-text,
.bernarion-rejected-text {
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px;
}

.bernarion-pending-text {
    background-color: #fff3cd;
    color: #856404;
}

.bernarion-rejected-text {
    background-color: #f8d7da;
    color: #721c24;
}

.col-actions {
    max-width: 200px;
}

.col-actions button {
    width: 100%;
}

.col-note {
    min-width: 250px;
    font-size: 13px;
    color: #555;
}