﻿body {
    background: #ebecff;
    font-family: 'Nunito', Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

a {
    color: #0003e0;
}

button {
    border: none;
}

.primary-btn,
.btn-danger {
    position: relative;
    border-radius: 10px;
    border: none;
    color: #fff;
    outline: none;
    background: #0003e0;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s ease-out;
}

.btn-danger {
    background: #dc3545;
}

.primary-btn:hover,
.primary-btn:focus,
.primary-btn:active {
    background: #0d0e79;
}

.edit-btn,
.delete-btn,
.video_btns .edit-btn,
.video_btns .delete-btn,
.export-btn {
    position: relative;
    padding: 0 0 0 20px;
}

.export-btn {
    background: none;
    padding: 0;
    margin: 10px 0 0 0;
    font-size: 14px;
    transition: all .3s ease-out;
}

.export-btn svg {
    width: 15px;
}

.export-btn path {
    transition: all .3s ease-out;
}

.export-btn:hover path {
    fill: #0003e0;
}

.export-btn:hover {
    color: #0003e0;
}

.edit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 15px;
    height: 100%;
    background: url(../img/edit-ico.svg) 50% 50% no-repeat;
    background-size: 15px auto;
}

.primary-btn.filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 13px;
    display: block;
    width: 15px;
    height: 100%;
    background: url(../img/filter-ico.svg) 50% 50% no-repeat;
    background-size: 15px auto;
}

.delete-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    display: block;
    width: 15px;
    height: 100%;
    background: url(../img/delete-ico-white.svg) 50% 50% no-repeat;
    background-size: 12px auto;
}

.main-content {
    margin-top: 60px;
    margin-left: 250px;
    padding: 20px 20px 40px 20px;
    transition: margin-left 0.3s ease;
    background-color: #EBECFF;
    min-height: calc(100vh - 60px);
}

.main-content.expanded {
    margin-left: 0;
}
.overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #cccffd;
    padding-bottom: 10px;
}

.module-header h2 {
    margin-bottom: 0;
}


/* Gumbovi za panel */
.btn-action {
    background-color: #0003E0;
    color: white;
    padding: 6px 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-weight: 600;
    text-decoration: none;
    border: none;
}

.btn-action:hover {
    background-color: #0d0e79;
    color: #fff;
}

.btn-action-back {
    position: relative;
    color: black;
    padding: 3px 15px 3px 20px;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-weight: 600;
}

.btn-action-back::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    top: 12px;
    left: 0;
    display: block;
    background: url(../img/chevron-down.svg) 50% 50% no-repeat;
    background-size: 12px auto;
    transform: rotate(90deg);
}

.btn-action-back,
.group-link {
    text-decoration: none;
}

/* Tablica */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 5px 10px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    font-size: 15px;
}

.data-table th {
    padding: 15px 10px;
    background-color: #d2d2f5;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
}

.data-table tr:hover {
    background-color: #f9f9f9;
}

.data-table th:nth-child(1),
.data-table td:nth-child(1) {
    width: 60px; /* Širina za Avatar */
    min-width: 60px;
}

.data-table th:nth-child(2),
.data-table td:nth-child(2) {
    width: 30%; /* Username */
    min-width: 150px;
}

.data-table th:nth-child(3),
.data-table td:nth-child(3) {
    width: 35%; /* E-MAIL */
    min-width: 200px;
}

.data-table th:nth-child(4),
.data-table td:nth-child(4) {
    width: 15%; /* Actions */
    min-width: 180px;
}

.action-links a,
.video_btns .edit-btn {
    margin-right: 10px;
    color: #0003E0;
    text-decoration: none;
    transition: all 0.2s ease-out;
    background: transparent;
}

.action-links a:hover {
    opacity: .7;
}

.action-links button,
.video_btns .delete-btn {
    background: none;
    border: none;
    background: #D9534F;
    color: #fff;
    cursor: pointer;
    padding: 2px 5px 2px 25px;
    border-radius: 6px;
    font-size: 14px;
}

.noAuth {
    padding: 0 15px;
}

.login-box {
    margin: 75px auto 0 auto;
    max-width: 550px;
    padding: 30px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}


.login-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.login-form {
    margin-top: 25px;
    text-align: left;
}

.forgot-password-link {
    text-decoration: none;
}

.login-btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-form input[type=text],
.login-form input[type=password] {
    background-color: #fff;
    border: none;
    border-bottom: 2px solid #0003e0;
    border-top: 0px;
    border-radius: 0;
    font-weight: 700;
    outline: 0;
    margin-bottom: 20px;
    padding: 0 0 10px 0;
    color: #000;
    box-shadow: none;
}

.login-form .form-group {
    margin-bottom: 20px;
    outline: 0px;
}

.login-form .primary-btn {
    padding: 10px 20px;
}

.form-control:focus {
    border-color: inherit;
    box-shadow: none;
    outline: 0;
}

.content-wrapper .form-control:focus {
    border: 1px solid #d1d5db;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0;
}

label {
    font-weight: 700;
    margin-bottom: 5px;
}

.form-control-label {
    font-size: 11px;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-outline-primary {
    border-color: #0DB8DE;
    color: #0DB8DE;
    border-radius: 0px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-outline-primary:hover {
    background-color: #0DB8DE;
    right: 0px;
}

.login-text {
    text-align: left;
    padding-left: 0px;
    color: #A2A4A4;
}

.jobjobtitle {
    color: #0DB8DE;
}

.delete-video-btn,
.delete-user-btn {
    padding: 6px 15px;
    font-size: 14px;
    line-height: 1.4;
}

.add-btn,
.primary-btn.filter,
.delete-video-btn,
.delete-user-btn {
    position: relative;
    padding-left: 40px;
    border-radius: 10px;
}

.add-btn {
    background: #009751;
}

.add-btn:hover {
    background: #046f3d;
}

.add-btn::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 0;
    width: 15px;
    height: 100%;
    display: block;
    background: url(../img/plus-ico.svg) 50% 50% no-repeat;
    background-size: 15px auto;
}

.delete-video-btn::before,
.delete-user-btn::before{
    content: '';
    position: absolute;
    left: 13px;
    top: 0;
    width: 15px;
    height: 100%;
    display: block;
    background: url(../img/delete-ico-white.svg) 50% 50% no-repeat;
    background-size: 15px auto;
}

.video-grid .delete-video-btn, .delete-user-btn {
    font-size: 14px;
    padding: 5px 15px 5px 35px;
}

.video-grid .delete-video-btn::before {
    width: 12px;
    background: url(../img/delete-ico-white.svg) 50% 50% no-repeat;
    background-size: 12px auto;
}


.country-form-container input[type="text"] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 400;
    margin-bottom: 15px;
}

.country-form-container input[type="text"]:focus {
    outline: 0;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
}

.btn-action-local {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.825rem 1.85rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #0DB8DE;
    border: none;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: background-color 0.15s ease-in-out;
    margin-top: 20px;
}

.btn-action-local:hover {
    background-color: #1A2226;
    text-decoration: none;
    color: #ffffff;
}

.country-form-container input[type="text"]::placeholder {
    font-size: 16px;
    color: #9ca3af;
    opacity: 1;
}



.form-columns-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



.required-star {
    color: red;
    font-weight: 700;
    margin-left: 0.5rem;
}

.flag-preview-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flag-preview-box #dynamicFlagPreview {
    width: 3rem;
    height: 2rem;
}

.flag-preview-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.flag-large-preview {
    margin-left: 100px;
    margin-top: 2%;
}

.data-table th.text-right {
    text-align: right;
}

.data-table td.text-right {
    text-align: right;
}

.data-table td.actions-cell a {
    text-decoration: none;
}

.action-links {
    white-space: nowrap;
}

.data-table td {
    vertical-align: middle;
}

.swal2-popup-custom {
    width: 45rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45) !important;
    padding: 1.9rem !important;
    border-radius: 1rem !important;
    font-size: 20px;
}

.swal2-title-custom {
    font-size: 2.175rem !important;
    color: #b91c1c !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

.swal2-confirm-custom {
    padding: 0.6rem 1.5rem !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

.swal2-cancel-custom {
    padding: 0.6rem 1.5rem !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

.module-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.country-form-container .form-columns-main {
    grid-template-columns: 1fr 0fr;
    margin: 10px 0 0 0;
    gap: 0;
}

.centered-form-wrapper {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.flag-preview-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.flag-large-preview {
    margin-left: 100px;
    margin-top: 2%;
}

.form-main-wrapper {
    margin-left: auto;
    margin-right: auto;
}

.module-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.user-form-container {
    padding: 2.5rem;
}

.user-form-container textarea.form-control {
    min-height: 200px;
}


.btn-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    color: #4b5563;
    padding: 0.6rem 1.2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid #d1d5db;
}

.btn-action-secondary:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.icon-left {
    margin-right: 0.5rem;
}

.user-form-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.column-section {
    padding-bottom: 2rem;
}

.column-section:not(:last-child) {
    margin-bottom: 2.5rem;
}

.section-title {
    font-weight: 700;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-title-stat {
    padding-top: 2rem;
}

.form-group {
    margin-bottom: 10px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.45rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    color: #1f2937;
    background-color: #ffffff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #0003E0;
    box-shadow: 0 0 10px rgba(0, 3, 224, 0.25);
    outline: none;
}

.user-form-columns .form-control:focus {
    border: 1px solid #d1d5db;
}

.form-textarea-lg {
    min-height: 8rem;
    resize: vertical;
}


.username-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0DB8DE;
    margin-top: 0.2rem;
}

.info-display .current-value {
    color: #6b7280;
    margin-top: 0.2rem;
}

.minor-heading {
    font-weight: 600;
    color: #4b5563;
    padding-top: 1rem;
    margin-bottom: 0.75rem;
}

.info-block {
    color: #4b5563;
    line-height: 1.6;
}

.stat-row {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    flex-grow: 1;
}

.stat-value {
    font-weight: 600;
    color: #1f2937;
}

.stat-value-small {
    font-weight: 600;
    color: #6b7280;
}



.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.checkbox-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-checkbox {
    width: 1.3rem;
    height: 1.3rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    cursor: pointer;
    position: static;
    top: auto;
}

.checkbox-label {
    margin: 0 !important;
}


.form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
    gap: 15px;
}

.save-btn {
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.validation-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.4rem;
    display: block;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0;
    line-height: normal;
    vertical-align: middle;
}



/*
pagination*/

.pagination-container {
    display: flex;
    padding: 1rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
}

.pagination-info {
    font-size: 0.875rem;
    color: #4b5563;
    padding-right: 1.5rem;
}

.pagination-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.pagination-nav a {
    position: relative;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    background-color: white;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.pagination-nav .active-page,
.pagination-nav a:hover {
    background-color: #0003E0;
    color: #fff;
    border-color: #0003E0;
}

.pagination-nav a:first-child {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.pagination-nav a:last-child {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.pagination-link {
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    font-size: 14px;
}

.pagination-link:hover {
    background-color: #EBECFF;
}

.pagination-link.active {
    background-color: #0003E0;
    color: #fff;
    border-color: #0003E0;
    cursor: default;
}

.pagination-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.cursor-not-allowed {
    cursor: not-allowed;
    opacity: 0.5;
}

.active-page + a:not(.active-page) {
    border-left-width: 0;
}

.content-wrapper {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper > .shadow-lg {
    flex-grow: 1;
}

.avatar-initials-placeholder {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #0003E0;
    color: #fff;
    font-weight: 700;
    line-height: 35px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-image-style {
    height: 35px;
    width: 35px;
    border-radius: 100%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    max-width: 100%;
    max-height: 40px;
}

.profile-avatar-image,
.avatar-initials-placeholder.profile-placeholder-style {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 600;
    color: white;
    background-color: #0003e0;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.avatar-wrapper {
    overflow: hidden;
    height: 35px;
    width: 35px;
}

.relative .countrySearchInput {
    width: 400px;
}

.stat-status-container {
    background-color: #f3f3ff;
    border: 1px solid #dcdce3;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-group-divider {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px dashed #cccccc;
}

.stat-status-container > .form-group.info-display {
    padding-top: 0;
    margin-top: 0;
}

.stat-item {
    flex-grow: 1;
}

.stat-value, .stat-value-small {
    font-weight: 700;
    color: #1c1fff;
}

.checkbox-row {
    display: flex;
    gap: 20px;
}

.job-company-container {
    background-color: #f3f3ff;
    border: 1px solid #dcdce3;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.other-translations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}

.country-form-container .english-translation input,
.country-form-container .other-translations input {
    width: 100%;
}

.column-section h3,
.column-section h4 {
    margin-top: 25px;
    margin-bottom: 15px;
}


.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: #1c1fff;
    border-color: #1c1fff;
}

.remove-video-form{
    margin: 10px 0 0 0;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #1c1fff;
}

.select2-container .select2-selection--single {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    padding-left: 1rem;
}

.select2-results__option {
    padding: 6px 1rem;
}

.filter-row .select2-container .select2-selection--multiple {
    max-height: 40px;
    border-radius: 8px;
}

.select2-container .select2-search--inline .select2-search__field {
    font-family: 'Nunito', Arial, sans-serif;
    margin-top: 0;
    line-height: 30px;
    height: 30px
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    border: 1px solid #d1d5db;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding-right: 30px;
}

.flag-edit.hidden {
    display: none;
}

.flag-ico,
.flag-edit {
    max-width: 50px;
    border-radius: 6px;
    margin: 5px;
}

.video-card-top,
.video-meta-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
}

.video-meta-wrapper {
    font-size: 12px;
    color: #777;
    padding: 0 0 10px 0;
}

.video-date-user-wrapper {
    font-size: 14px;
    color: #777;
}

.video-date-user-wrapper a {
    text-decoration: none;
}

.form-check-input {
    width: 1.3em;
    height: 1.3em;
    border: 1px solid #b7b7b7;
}

.form-check-input:checked {
    background-color: #0003e0;
    border-color: #0003e0;
}

/*video status*/
.status-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    margin: 0 10px 0 0;
}

.status-badge.approved {
    background: #16a34a;
    color: white;
}

.status-badge.not-approved {
    background: #dc2626;
    color: white;
}

.status-badge.active {
    background: #2563eb;
    color: white;
}

.status-badge.inactive {
    background: #6b7280;
    color: white;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;    
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
}

.all-filters-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr) 0.5fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    margin: 0 0 20px 0;
}

.all-filters-wrapper .delete-video-btn {
    font-size: 15px;
    align-self: center;
}

.form-select {
    padding: 0.45rem 1rem;
    min-width: 150px;
    width: auto;
    font-size: 15px;
}

.bulk-form-wrapper {
    margin: 0 0 30px 0;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 15px;
    font-size: 14px;
}

.bulk-form-wrapper h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.bulk-bar {
    display: flex;
}

.form-check {
    margin-bottom: 0;
}

.filter-row .form-check label,
.form-check label {
    margin: 0 0 0 5px;
    font-size: 15px;
}

.job-company-container .form-check label {
    position: relative;
    top: 1px;
}

.job-company-container.main-country input[type="text"] {
    margin-bottom: 0;
}

.video-filter-form-wrapper {
    margin: 0 0 10px 0;
}

.search-sort-wrapper {
    display: flex;
    justify-content: space-between;
}

.search-filter-btn a {
    margin: 0 0 0 10px;
}

.reports-sort-wrapper {
    align-items: center;
}

.reports-sort-wrapper .form-check {
    margin: 0 10px 0 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #0d0e79;
    border-color: #0d0e79;
}

.nav-tabs .nav-link {
    color: #000;
}

/* === SELECT2 UX FIX === */

.filter-row .select2-selection__choice {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    font-size: 14px;
}

.filter-row .select2-container {
    min-width: 200px;
}

.filter-row .filter-group {
    min-width: 220px;
}

.filter-row .js-select2-category,
.filter-row .js-select2-subcategory {
    width: 260px !important;
}

.user-row {
    cursor: pointer;
    transition: background 0.2s ease;
}

    .user-row:hover {
        background-color: #f3f4ff;
    }

/*user avatar*/
.avatar-click-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.avatar-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 4px;
    opacity: 0;
    transition: 0.2s;
}

.avatar-click-wrapper:hover .avatar-overlay {
    opacity: 1;
}

.header-form-wrapper.users-header {
    display: block;
}

.users-header .filter-row {
    align-items: start;
}

.users-header .filter-row .form-control {
    width: 100%;
}

.users-header .filter-row .select2-container .select2-selection--multiple {
    max-height: 100%;
    height: 100px;
    overflow-y: auto;
    overflow-x: hidden;
}

.users-header .filter-row .select2-container {
    max-width: 220px;
    width: 100% !important;
}

.users-header .select2-container .select2-search--inline .select2-search__field {
    padding: 3px 5px;
    font-size: 15px;
}

.users-header .delete-video-btn {
    font-size: 16px;
    padding-left: 35px;
    height: 36px;
}

.user-row .edit-btn::before {
    top: -3px;
    width: 17px;
    background: url(../img/edit-ico.svg) 50% 50% no-repeat;
    background-size: 17px auto;
}

.filter-buttons {
    display: flex;
}

.filter-buttons button {
    margin: 0 10px 0 0;
}

.add-country.btn-action {
    padding: 9px 15px 9px 40px;
}

#countryTableBody td {
    padding: 5px 16px;
}