
.table-container {
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    overflow: hidden;
}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background-color: var(--secondary);
    border: 1px solid #ddd;
    border-radius: 8px;
}
.search-container select,
.search-container input,
.search-container button {
    font-weight: 500;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}
.search-container input {
    cursor: text;
}
.search-container select {
    background-color: #eee;
    color: black;
    width: 150px;
}
.search-container input {
    width: 250px;
}
.search-container button {
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.search-container button:hover {
    background-color: var(--primary);
}
.tabulator {
    border-radius: 4px;
}
.tabulator .tabulator-header .tabulator-col {
    background-color: var(--primary) !important;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
}
.tabulator .tabulator-row:nth-child(even) {
    background-color: #f9f9f9;
}
.tabulator .tabulator-row:hover {
    background-color: #e9e9e9 !important;
}
.tabulator .tabulator-cell {
    font-size: 1rem;
    color: #000;
    padding: 10px;
    font-weight: 500;
}

/* Hide the menu by default */
.context-menu {
    position: absolute;
    display: none;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
}



.context-menu li, .action-buttons li {
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    font-size: 1.2em;
}

.context-menu li:hover, .action-buttons li:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
}

.action-buttons .view { color: #007bff; }
.action-buttons .edit { color: #28a745; }
.action-buttons .edit_flash { color: orange; }
.action-buttons .edit_employer { color: #e2e6ea; }
.action-buttons .delete { color: #dc3545; }
.action-buttons .undo { color: #17a2b8; }
.action-buttons .duplicate { color: #ffc107; }
.action-buttons .vip-toggle { color: #17a2b8; }
.action-buttons .open { color: #ffc700; }
.action-buttons .up { color: #007bff; }
.action-buttons .down { color: #ff8800; }
.action-buttons .image { color: #17a2b8; }




/* Bekapcsolt állapot szín */
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2); /* Increase the size of the checkbox */
}

/* Hover effekt a bekapcsolt állapotban */
.form-check-input:checked:hover {
    background-color: #6c757d; /* Adjust this color to your desired hover effect color */
}

/* Kapcsoló kör színének testreszabása */
.form-check-input:checked:focus {
    box-shadow: 0 0 0 0.2rem rgba(56, 58, 94, 0.5);
}

/* Kikapcsolt állapot szín, ha testreszabni szeretnéd */
.form-check-input {
    background-color: #e9ecef;
    border-color: #ced4da;
    transform: scale(1.2); /* Increase the size of the checkbox */
}

/* Hover effekt kikapcsolt állapotban */
.form-check-input:hover {
    background-color: #f8f9fa;
}


.tabulator-footer-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #eee;
}

.tabulator-page {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #000 !important;
    background-color: #f8f9fa !important;
    transition: all 0.2s ease;
    border-radius: 4px;
}
.tabulator-page:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #000 !important;
    background-color: #23272f !important;
    color: #fff !important;
}
.tabulator-page.active:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    color: #fff !important;
    background-color: #bfc2c7 !important;
}
