:root {
  --jobick-primary: #f73a0b;
  --jobick-primary-hover: #cc2c05;
  --jobick-primary-soft: rgba(247, 58, 11, 0.1);
  --jobick-secondary: #145650;
  --jobick-body: #f5f5f5;
  --jobick-heading: #222;
  --jobick-muted: #888;
  --jobick-border: #eeeeee;
  --jobick-sidebar-text: #6e6e6e;
  --jobick-font-family: Roboto, Arial, sans-serif;
}

body,
button,
input,
select,
textarea,
.main-sidebar,
.content-wrapper,
.modal,
.dataTables_wrapper {
  font-family: var(--jobick-font-family);
}

.jobick-page,
.dashboard-page,
.profile-page {
  background: var(--jobick-body);
  color: var(--jobick-muted);
  font-family: var(--jobick-font-family);
  padding-bottom: 30px;
}

.jobick-page .content-header,
.dashboard-page .content-header,
.profile-page .content-header {
  padding: 30px 24px 12px;
}

.dashboard-page .content,
.profile-page .content,
.jobick-page .content {
  padding: 0 24px 24px;
}

.jobick-page h1,
.dashboard-page .content-header h1,
.profile-page .content-header h1 {
  color: var(--jobick-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.jobick-card,
.jobick-page .card,
.dashboard-page .card,
.dashboard-page .stat-card,
.dashboard-page .profile-progress-pro,
.dashboard-page .dashboard-table-card,
.profile-card,
.profile-info-card {
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.045);
}

.jobick-btn-primary,
.profile-action-btn,
.profile-modal .btn-primary,
.jobick-page .btn-primary,
.jobick-page .btn-success {
  background: var(--jobick-primary);
  border-color: var(--jobick-primary);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(247, 58, 11, 0.18);
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
}

.jobick-btn-primary:hover,
.profile-action-btn:hover,
.profile-modal .btn-primary:hover,
.jobick-page .btn-primary:hover,
.jobick-page .btn-success:hover,
.jobick-btn-primary:focus,
.profile-action-btn:focus,
.profile-modal .btn-primary:focus,
.jobick-page .btn-primary:focus,
.jobick-page .btn-success:focus,
.jobick-btn-primary:active,
.profile-action-btn:active,
.profile-modal .btn-primary:active,
.jobick-page .btn-primary:active,
.jobick-page .btn-success:active,
.jobick-page .btn-primary:not(:disabled):not(.disabled):active,
.jobick-page .btn-success:not(:disabled):not(.disabled):active {
  background: var(--jobick-primary-hover);
  border-color: var(--jobick-primary-hover);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(247, 58, 11, 0.16);
}

.jobick-link,
.dashboard-page .dashboard-link,
.jobick-page a:not(.btn):not(.nav-link) {
  color: var(--jobick-primary);
  font-weight: 700;
}

.jobick-link:hover,
.dashboard-page .dashboard-link:hover,
.jobick-page a:not(.btn):not(.nav-link):hover {
  color: var(--jobick-primary-hover);
  text-decoration: none;
}

/* Sidebar */
.jobick-sidebar {
  background: #fff;
  border-right: 1px solid var(--jobick-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.jobick-sidebar .brand-link {
  align-items: center;
  border-bottom: 1px solid var(--jobick-border);
  display: flex;
  height: 86px;
  justify-content: center;
  padding: 14px 18px;
}

.jobick-sidebar .brand-link img {
  height: 210px;
  max-width: 270px;
  object-fit: contain;
  padding: 0;
  width: auto;
}

.jobick-sidebar .sidebar {
  padding: 18px 14px 24px;
}

.jobick-sidebar .user-panel {
  background: #fafafa;
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  margin: 0 0 18px;
  padding: 12px;
}

.jobick-sidebar .user-panel .image {
  padding-left: 0;
}

.jobick-sidebar .user-panel img {
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.jobick-sidebar .user-panel .info {
  min-width: 0;
  padding: 1px 5px 0 12px;
}

.jobick-sidebar .user-panel .info a {
  color: var(--jobick-heading);
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jobick-sidebar .nav-sidebar {
  gap: 3px;
}

.jobick-sidebar .nav-sidebar > .nav-item {
  margin-bottom: 3px;
}

.jobick-sidebar .nav-sidebar .nav-link {
  align-items: center;
  border-radius: 8px;
  color: var(--jobick-sidebar-text);
  display: flex;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  padding: 10px 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.jobick-sidebar .nav-sidebar .nav-link > i:first-child {
  color: #96a0af;
  flex: 0 0 22px;
  font-size: 17px;
  margin-right: 12px;
  text-align: center;
}

.jobick-sidebar .nav-sidebar .nav-link p {
  align-items: center;
  color: inherit;
  display: flex;
  flex: 1;
  justify-content: space-between;
  margin: 0;
  min-width: 0;
}

.jobick-sidebar .nav-sidebar .nav-link:hover,
.jobick-sidebar .nav-sidebar .nav-link.active,
.jobick-sidebar .nav-sidebar .menu-open > .nav-link {
  background: var(--jobick-primary-soft);
  color: var(--jobick-primary);
}

.jobick-sidebar .nav-sidebar .nav-link:hover > i:first-child,
.jobick-sidebar .nav-sidebar .nav-link.active > i:first-child,
.jobick-sidebar .nav-sidebar .menu-open > .nav-link > i:first-child {
  color: var(--jobick-primary);
}

.jobick-sidebar .nav-treeview {
  margin: 4px 0 8px;
  padding-left: 20px;
  position: relative;
}

.jobick-sidebar .nav-treeview::before {
  background: #f0f0f0;
  bottom: 8px;
  content: "";
  left: 20px;
  position: absolute;
  top: 8px;
  width: 2px;
}

.jobick-sidebar .nav-treeview .nav-link {
  background: transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  min-height: 34px;
  padding: 7px 12px 7px 28px;
}

.jobick-sidebar .nav-treeview .nav-link .nav-icon {
  display: none;
}

.jobick-sidebar .nav-treeview .nav-link::before {
  background: #cfcfcf;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  z-index: 1;
}

.jobick-sidebar .nav-treeview .nav-link:hover::before,
.jobick-sidebar .nav-treeview .nav-link.active::before {
  background: var(--jobick-primary);
}

.jobick-sidebar .right {
  color: inherit;
  margin-left: 10px;
}

.jobick-logout {
  align-items: center;
  background: var(--jobick-primary);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(247, 58, 11, 0.22);
  color: #fff;
  display: flex;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  margin: 22px 0 0;
  padding: 11px 14px;
  text-decoration: none;
  width: 100%;
}

.jobick-logout:hover {
  background: var(--jobick-primary-hover);
  color: #fff;
  text-decoration: none;
}

.jobick-alert-text-success,
.jobick-alert-text-danger {
  text-align: center;
}

.jobick-alert-text-success {
  color: green;
}

.jobick-alert-text-danger {
  color: red;
}

.sidebar-collapse .jobick-sidebar .brand-link img {
  max-width: 52px;
}

.sidebar-collapse .jobick-sidebar .user-panel .info,
.sidebar-collapse .jobick-sidebar .jobick-logout span {
  display: none;
}

/* Dashboard */
.profile-progress-pro h5 {
  color: var(--jobick-heading);
  font-weight: 600;
}

.profile-progress-link,
.profile-progress-link:hover {
  text-decoration: none;
}

.profile-progress-wrapper {
  padding-bottom: 35px;
  padding-top: 25px;
  position: relative;
}

.profile-progress-track {
  background: #e9ecef;
  border-radius: 6px;
  height: 6px;
  overflow: hidden;
  position: relative;
}

.profile-progress-fill {
  border-radius: 6px;
  height: 100%;
}

.progress-step {
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 22px;
  transform: translateX(-50%);
}

.step-dot {
  background: #dee2e6;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #dee2e6;
  display: block;
  height: 14px;
  margin: 0 auto;
  width: 14px;
}

.step-label {
  color: #6c757d;
  display: block;
  font-size: 0.72rem;
  margin-top: 10px;
  white-space: nowrap;
}

.progress-step.completed .step-label {
  color: #212529;
  font-weight: 600;
}

.table-responsive-custom {
  overflow-x: auto;
}

.dashboard-page .breadcrumb {
  background: transparent;
  font-size: 14px;
  margin-bottom: 0;
  padding: 0;
}

.dashboard-page .breadcrumb a {
  color: var(--jobick-primary);
  font-weight: 600;
}

.dashboard-page .profile-progress-pro,
.dashboard-page .dashboard-table-card {
  overflow: hidden;
}

.dashboard-page .profile-progress-pro .card-body,
.dashboard-page .dashboard-table-card .card-body {
  padding: 24px;
}

.dashboard-page .completion-percent {
  color: var(--jobick-primary);
  font-weight: 700;
}

.dashboard-page .profile-completion-actions {
  gap: 14px;
}

.dashboard-page .dashboard-profile-action {
  align-items: center;
  background: var(--jobick-primary);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(247, 58, 11, 0.2);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 42px;
  padding: 10px 16px;
}

.dashboard-page .dashboard-profile-action:hover,
.dashboard-page .dashboard-profile-action:focus,
.dashboard-page .dashboard-profile-action:active {
  background: var(--jobick-primary-hover);
  color: #fff;
  text-decoration: none;
}

.dashboard-page .profile-progress-fill {
  background: linear-gradient(90deg, var(--jobick-primary), #ff8a5b);
  animation: jobickFillBar 1.4s ease forwards;
}

@keyframes jobickFillBar {
  from {
    width: 0;
  }
}

.dashboard-page .progress-step.completed .step-dot {
  background: var(--jobick-primary);
  box-shadow: 0 0 0 2px var(--jobick-primary);
}

.dashboard-page .stat-card {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 142px;
  margin-bottom: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border-left: 0;
}

.dashboard-page .stat-card::before {
  background: var(--jobick-primary);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 5px;
}

.dashboard-page .stat-card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.dashboard-page .stat-title {
  color: var(--jobick-muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.dashboard-page .stat-content {
  display: flex;
  flex-direction: column;
}

.dashboard-page .stat-value {
  color: var(--jobick-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.dashboard-page .stat-icon {
  align-items: center;
  background: var(--jobick-primary-soft) !important;
  border-radius: 8px;
  color: var(--jobick-primary);
  display: flex;
  flex: 0 0 56px;
  font-size: 24px;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.dashboard-page .stat-icon i {
  color: var(--jobick-primary) !important;
}

.dashboard-page .dashboard-table-card h5 {
  color: var(--jobick-heading);
  font-size: 18px;
  font-weight: 700;
}

.student-skill-chart-wrap {
  height: 300px;
  margin-top: 8px;
  position: relative;
}

.student-skill-legend {
  border-top: 1px solid var(--jobick-border);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 18px;
  padding-top: 16px;
}

.student-skill-legend div {
  align-items: center;
  background: #fafafa;
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 10px 12px;
}

.student-skill-legend span {
  color: #6e6e6e;
  font-size: 13px;
  font-weight: 700;
}

.student-skill-legend strong {
  color: var(--jobick-primary);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.dashboard-page .dashboard-table,
.jobick-table {
  border-collapse: separate;
  border-spacing: 0;
}

.dashboard-page .dashboard-table th,
.jobick-table th {
  background: #fafafa;
  border-bottom: 1px solid var(--jobick-border);
  color: #6e6e6e;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 16px;
  text-transform: uppercase;
}

.dashboard-page .dashboard-table td,
.jobick-table td {
  border-top: 0;
  color: #504f4f;
  font-size: 14px;
  padding: 16px;
  vertical-align: middle;
}

.dashboard-page .dashboard-table tr:not(:last-child) td,
.jobick-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--jobick-border);
}

.status-pill {
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  min-width: 78px;
  padding: 8px 14px;
}

.status-pill-success {
  background: #e1f9e0;
  color: #24a148;
}

.status-pill-warning {
  background: #ffeddd;
  color: #f59e0b;
}

.status-pill-danger {
  background: #fdd5dc;
  color: #f34040;
}

/* Profile */
.profile-card,
.profile-info-card {
  overflow: hidden;
}

.profile-cover {
  background: linear-gradient(135deg, #145650 0%, #f73a0b 100%);
  height: 118px;
}

.profile-avatar-wrap {
  margin-top: -54px;
  text-align: center;
}

.profile-avatar {
  background: #fff;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  height: 108px;
  object-fit: cover;
  width: 108px;
}

.profile-name {
  color: var(--jobick-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 16px 0 4px;
}

.profile-email {
  color: var(--jobick-muted);
  display: block;
  font-size: 14px;
  word-break: break-word;
}

.profile-role-pill {
  background: var(--jobick-primary-soft);
  border-radius: 999px;
  color: var(--jobick-primary);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  margin-top: 14px;
  padding: 8px 14px;
}

.profile-logo-box {
  border-top: 1px solid var(--jobick-border);
  margin-top: 24px;
  padding-top: 24px;
  text-align: center;
}

.profile-logo {
  height: 64px;
  max-width: 210px;
  object-fit: contain;
  width: auto;
}

.profile-website {
  color: var(--jobick-muted);
  display: block;
  font-size: 13px;
  margin-top: 12px;
  word-break: break-word;
}

.profile-action-btn {
  align-items: center;
  background: var(--jobick-primary) !important;
  border: 0 !important;
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(247, 58, 11, 0.24);
  display: inline-flex;
  font-size: 15px;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
}

.profile-action-btn i {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin: 0;
  width: 28px;
}

.profile-action-btn:hover,
.profile-action-btn:focus,
.profile-action-btn:active,
.profile-action-btn:not(:disabled):not(.disabled):active {
  background: var(--jobick-primary-hover) !important;
  border-color: var(--jobick-primary-hover) !important;
  box-shadow: 0 16px 30px rgba(247, 58, 11, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

.modal-content,
.profile-modal .modal-content,
.jobick-modal .modal-content {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.modal-header,
.profile-info-card .card-header,
.profile-modal .modal-header,
.jobick-modal .modal-header {
  background: #fff;
  border-bottom: 1px solid var(--jobick-border);
  color: var(--jobick-heading);
  padding: 22px 24px;
}

.modal-title,
.profile-info-card .card-header h5,
.profile-modal .modal-title,
.jobick-modal .modal-title {
  color: var(--jobick-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.profile-info-card .card-body {
  padding: 12px 24px 24px;
}

.profile-detail-row {
  align-items: center;
  border-bottom: 1px solid var(--jobick-border);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 17px 0;
}

.profile-detail-row:last-child {
  border-bottom: 0;
}

.profile-detail-label {
  color: #6e6e6e;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-detail-value {
  color: var(--jobick-heading);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.profile-page .alert,
.jobick-page .alert {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.modal-body,
.profile-modal .modal-body,
.jobick-modal .modal-body {
  padding: 24px;
}

.modal-footer,
.profile-modal .modal-footer,
.jobick-modal .modal-footer {
  border-top: 1px solid var(--jobick-border);
  padding: 18px 24px;
}

.modal .form-label,
.modal label,
.profile-modal .form-label,
.jobick-modal .form-label,
.jobick-page .form-label {
  color: var(--jobick-heading);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal .form-control,
.profile-modal .form-control,
.jobick-modal .form-control,
.jobick-page .form-control {
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  color: var(--jobick-heading);
  min-height: 45px;
}

.modal select.form-control,
.profile-modal select.form-control,
.jobick-modal select.form-control,
.jobick-page select.form-control {
  appearance: none;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #888 50%),
    linear-gradient(135deg, #888 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  color: #888;
  cursor: pointer;
  font-size: 15px;
  padding: 11px 44px 11px 16px;
}

.modal select.form-control option,
.profile-modal select.form-control option,
.jobick-modal select.form-control option,
.jobick-page select.form-control option {
  background: #fff;
  color: #888;
}

.modal select.form-control option:checked,
.profile-modal select.form-control option:checked,
.jobick-modal select.form-control option:checked,
.jobick-page select.form-control option:checked {
  background: #fde8e3;
  color: var(--jobick-primary);
}

.jobick-page .select2-container--default .select2-selection--single,
.jobick-page .select2-container--default .select2-selection--multiple {
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  min-height: 45px;
}

.jobick-modal .select2-container--default .select2-selection--single,
.jobick-modal .select2-container--default .select2-selection--multiple {
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  min-height: 45px;
}

.jobick-page .select2-container--default.select2-container--open .select2-selection--single,
.jobick-page .select2-container--default.select2-container--focus .select2-selection--single,
.jobick-modal .select2-container--default.select2-container--open .select2-selection--single,
.jobick-modal .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--jobick-primary);
  box-shadow: 0 0 0 0.2rem rgba(247, 58, 11, 0.12);
}

.jobick-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #888;
  line-height: 43px;
  padding-left: 16px;
}

.jobick-modal .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #888;
  line-height: 43px;
  padding-left: 16px;
}

.jobick-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 43px;
  right: 12px;
}

.jobick-modal .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 43px;
  right: 12px;
}

.select2-dropdown {
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.select2-container--default .select2-results__option {
  color: #888;
  padding: 12px 16px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected],
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #fde8e3;
  color: var(--jobick-primary);
}

.modal .form-control:focus,
.profile-modal .form-control:focus,
.jobick-modal .form-control:focus,
.jobick-page .form-control:focus {
  border-color: var(--jobick-primary);
  box-shadow: 0 0 0 0.2rem rgba(247, 58, 11, 0.12);
}

.modal .btn-primary,
.modal .btn-success {
  background: var(--jobick-primary);
  border-color: var(--jobick-primary);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(247, 58, 11, 0.18);
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
}

.modal .btn-primary:hover,
.modal .btn-success:hover,
.modal .btn-primary:focus,
.modal .btn-success:focus,
.modal .btn-primary:active,
.modal .btn-success:active,
.modal .btn-primary:not(:disabled):not(.disabled):active,
.modal .btn-success:not(:disabled):not(.disabled):active {
  background: var(--jobick-primary-hover);
  border-color: var(--jobick-primary-hover);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(247, 58, 11, 0.16);
}

.modal .btn-secondary,
.modal .btn-default,
.modal .btn-outline-secondary,
.profile-modal .btn-outline-secondary,
.jobick-modal .btn-outline-secondary,
.jobick-modal .btn-default {
  background: #fff;
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  color: #504f4f;
  font-weight: 700;
  padding: 10px 16px;
}

.modal .btn-secondary:hover,
.modal .btn-default:hover,
.modal .btn-outline-secondary:hover,
.modal .btn-secondary:focus,
.modal .btn-default:focus,
.modal .btn-outline-secondary:focus,
.modal .btn-secondary:active,
.modal .btn-default:active,
.modal .btn-outline-secondary:active {
  background: #f8f8f8;
  color: var(--jobick-heading);
  box-shadow: 0 0 0 0.2rem rgba(80, 79, 79, 0.08);
}

.modal .close {
  align-items: center;
  background: var(--jobick-primary-soft);
  border-radius: 8px;
  color: var(--jobick-primary);
  display: inline-flex;
  font-size: 24px;
  height: 36px;
  justify-content: center;
  margin: -6px -6px -6px auto;
  opacity: 1;
  padding: 0;
  text-shadow: none;
  width: 36px;
}

.modal .close:hover {
  background: var(--jobick-primary);
  color: #fff;
}

/* Lists and DataTables */
.jobick-page .content-header .jobick-page-actions {
  display: flex;
  justify-content: flex-end;
}

.jobick-table-card .card-header {
  background: #fff;
  border-bottom: 1px solid var(--jobick-border);
  padding: 22px 24px;
}

.jobick-table-card .card-header h5 {
  color: var(--jobick-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.jobick-table-card .card-body {
  padding: 24px;
}

.jobick-config-card .card-header,
.jobick-summary-card .card-header {
  background: #fff;
  border-bottom: 1px solid var(--jobick-border);
  padding: 22px 24px;
}

.jobick-config-card .card-header h5,
.jobick-summary-card .card-header h5 {
  color: var(--jobick-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.jobick-detail-list {
  display: flex;
  flex-direction: column;
}

.jobick-config-card-horizontal .jobick-detail-list {
  flex-direction: row;
  gap: 24px;
}

.jobick-detail-item {
  border-bottom: 1px solid var(--jobick-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px 0;
}

.jobick-config-card-horizontal .jobick-detail-item {
  border-bottom: 0;
  border-right: 1px solid var(--jobick-border);
  flex: 1 1 0;
  padding: 0 24px 0 0;
}

.jobick-config-card-horizontal .jobick-detail-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.jobick-config-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jobick-config-actions .btn {
  min-width: 180px;
}

.jobick-detail-item:first-child {
  padding-top: 0;
}

.jobick-detail-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.jobick-detail-item span,
.jobick-eyebrow {
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.jobick-detail-item strong {
  color: var(--jobick-heading);
  font-size: 16px;
  font-weight: 700;
  word-break: break-word;
}

.jobick-summary-card {
  background: linear-gradient(135deg, #145650 0%, #1b6a61 55%, #f73a0b 100%);
  color: #fff;
  overflow: hidden;
}

.jobick-summary-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  padding: 32px;
}

.jobick-summary-card .jobick-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.jobick-summary-card h2 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin: 12px 0;
}

.jobick-summary-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  margin: 0;
  max-width: 480px;
}

.jobick-page #example2 th,
.jobick-page #example2 td {
  max-width: 280px;
  white-space: normal;
}

.jobick-page #example1 th,
.jobick-page #example1 td {
  max-width: 280px;
  white-space: normal;
}

.jobick-action-dropdown {
  display: inline-block;
  position: relative;
}

.jobick-action-btn,
.action-btn {
  align-items: center;
  background: var(--jobick-primary-soft);
  border: 0;
  border-radius: 8px;
  color: var(--jobick-primary);
  cursor: pointer;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.jobick-action-btn:hover,
.action-btn:hover {
  background: var(--jobick-primary);
  color: #fff;
}

.jobick-action-menu,
.dropdown-content {
  background-color: #fff;
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  min-width: 88px;
  overflow: hidden;
  position: absolute;
  right: 40px;
  top: -14px;
  z-index: 1000;
}

.jobick-action-dropdown.active .jobick-action-menu,
.dropdown.active .dropdown-content {
  display: block;
}

.jobick-action-menu a,
.dropdown-content a {
  align-items: center;
  color: #504f4f;
  display: flex;
  gap: 8px;
  padding: 9px 12px;
  text-decoration: none;
}

.jobick-action-menu a:hover,
.dropdown-content a:hover {
  background: var(--jobick-primary-soft);
  color: var(--jobick-primary);
}

.jobick-inline-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jobick-inline-actions .btn-sm {
  align-items: center;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  min-height: 34px;
  padding: 7px 12px;
}

.jobick-inline-actions .btn-success {
  background: var(--jobick-primary);
  color: #fff;
}

.jobick-inline-actions .btn-success:hover,
.jobick-inline-actions .btn-success:focus {
  background: var(--jobick-primary-hover);
  color: #fff;
}

.jobick-inline-actions .btn-danger {
  background: #fdd5dc;
  color: #f34040;
}

.jobick-inline-actions .btn-danger:hover,
.jobick-inline-actions .btn-danger:focus {
  background: #f34040;
  color: #fff;
}

.jobick-rich-text {
  color: #504f4f;
  max-width: 360px;
}

.jobick-rich-text p {
  margin-bottom: 6px;
}

.jobick-rich-text ul,
.jobick-rich-text ol {
  margin-bottom: 6px;
  padding-left: 18px;
}

.jobick-plan-modal .ck-editor__editable_inline {
  border-color: var(--jobick-border) !important;
  min-height: 150px;
}

.jobick-plan-modal .ck.ck-editor__main > .ck-editor__editable:focus {
  border-color: var(--jobick-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(247, 58, 11, 0.12) !important;
}

.jobick-subscription-summary {
  background: linear-gradient(135deg, #145650 0%, #1b6a61 55%, #f73a0b 100%);
  color: #fff;
  overflow: hidden;
}

.jobick-subscription-summary .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 32px;
}

.jobick-subscription-summary .jobick-eyebrow,
.jobick-subscription-summary p {
  color: rgba(255, 255, 255, 0.76);
}

.jobick-subscription-summary h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 12px 0;
}

.jobick-subscription-history {
  border-bottom: 1px solid var(--jobick-border);
  padding: 0 0 24px;
}

.jobick-subscription-history + .jobick-subscription-history {
  padding-top: 24px;
}

.jobick-subscription-history:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.jobick-subscription-history-head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.jobick-subscription-history-head h5 {
  color: var(--jobick-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 0;
}

.jobick-detail-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.jobick-detail-grid > div {
  background: #fafafa;
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  padding: 14px;
}

.jobick-detail-grid span {
  color: #6e6e6e;
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.jobick-detail-grid strong {
  color: var(--jobick-heading);
  font-size: 15px;
}

.jobick-subscription-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  position: relative;
}

.jobick-subscription-timeline::before {
  background: var(--jobick-border);
  content: "";
  height: 2px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 13px;
}

.jobick-timeline-step {
  position: relative;
  text-align: center;
}

.jobick-timeline-step span {
  background: #dee2e6;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #dee2e6;
  display: block;
  height: 22px;
  margin: 2px auto 12px;
  position: relative;
  width: 22px;
  z-index: 1;
}

.jobick-timeline-step.is-complete span {
  background: #24a148;
  box-shadow: 0 0 0 2px #24a148;
}

.jobick-timeline-step.is-warning span {
  background: #f59e0b;
  box-shadow: 0 0 0 2px #f59e0b;
}

.jobick-timeline-step.is-danger span {
  background: #f34040;
  box-shadow: 0 0 0 2px #f34040;
}

.jobick-timeline-step strong {
  color: var(--jobick-heading);
  display: block;
  font-size: 14px;
}

.jobick-timeline-step small {
  color: #6e6e6e;
}

.jobick-empty-state {
  color: var(--jobick-muted);
  padding: 48px 20px;
  text-align: center;
}

.jobick-empty-state h5,
.jobick-section-title h2 {
  color: var(--jobick-heading);
  font-weight: 700;
}

.jobick-section-title {
  margin: 10px 0 22px;
}

.jobick-plan-card {
  border: 1px solid transparent;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jobick-plan-card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.jobick-plan-card.is-current {
  border-color: #24a148;
}

.jobick-plan-card .card-body {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
}

.jobick-plan-badge {
  align-self: flex-start;
  background: #e1f9e0;
  border-radius: 999px;
  color: #24a148;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 8px 14px;
}

.jobick-plan-badge.is-soft {
  background: var(--jobick-primary-soft);
  color: var(--jobick-primary);
}

.jobick-plan-card h3 {
  color: var(--jobick-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.jobick-plan-price {
  color: var(--jobick-primary);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

.jobick-plan-features {
  flex: 1;
  margin-bottom: 22px;
}

.spinner-lg {
  height: 4rem;
  width: 4rem;
}

.jobick-page .dataTables_wrapper .dataTables_length select,
.jobick-page .dataTables_wrapper .dataTables_filter input {
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  color: var(--jobick-heading);
  min-height: 38px;
}

.jobick-page .dataTables_wrapper .dt-buttons .btn {
  background: #fff;
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  color: #504f4f;
  font-weight: 600;
  margin-right: 6px;
}

.jobick-page .dataTables_wrapper .dt-buttons .btn:hover {
  background: var(--jobick-primary);
  border-color: var(--jobick-primary);
  color: #fff;
}

.jobick-repeat-group .technology-row {
  border-bottom: 1px solid var(--jobick-border);
  margin-bottom: 18px;
  padding-bottom: 4px;
}

.jobick-repeat-group .technology-row:last-child {
  border-bottom: 0;
}

.jobick-page #examcodetbl .btn-danger {
  align-items: center;
  background: #fdd5dc;
  border: 0;
  border-radius: 8px;
  color: #f34040;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.jobick-page #examcodetbl .btn-danger:hover,
.jobick-page #examcodetbl .btn-danger:focus,
.jobick-page #examcodetbl .btn-danger:active {
  background: #f34040;
  color: #fff;
}

.jobick-copy-url {
  align-items: center;
  display: flex;
  gap: 8px;
  max-width: 360px;
}

.jobick-copy-url span {
  background: #fafafa;
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  color: #504f4f;
  display: block;
  flex: 1;
  font-size: 13px;
  min-width: 160px;
  overflow: hidden;
  padding: 8px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jobick-switch {
  display: inline-flex;
  vertical-align: middle;
}

.jobick-switch input {
  display: none;
}

.jobick-switch span {
  background: #d1d5db;
  border-radius: 999px;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  position: relative;
  transition: background-color 0.2s ease;
  width: 46px;
}

.jobick-switch span::before {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  content: "";
  height: 18px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 0.2s ease;
  width: 18px;
}

.jobick-switch input:checked + span {
  background: var(--jobick-primary);
}

.jobick-switch input:checked + span::before {
  transform: translateX(22px);
}

.jobick-switch-label {
  color: #6e6e6e;
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}

.student-exam-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.student-exam-card {
  /* aspect-ratio: 1 / 1; */
  background: #fff;
  border: 1px solid var(--jobick-border);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.student-exam-card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.student-exam-icon {
  align-items: center;
  background: var(--jobick-primary-soft);
  border-radius: 8px;
  color: var(--jobick-primary);
  display: inline-flex;
  font-size: 22px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.student-exam-card h4 {
  color: var(--jobick-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 10px;
}

.student-exam-meta {
  color: #6e6e6e;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 7px;
}

.student-exam-meta span {
  align-items: center;
  display: flex;
  gap: 8px;
}

.student-exam-meta i {
  color: var(--jobick-primary);
  width: 16px;
}

.student-exam-card .btn {
  border-radius: 8px;
  font-weight: 700;
}

.jobick-application-card {
  position: relative;
}

.jobick-card-status {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 5px 10px;
  position: absolute;
  right: 16px;
  text-transform: uppercase;
  top: 16px;
}

.jobick-card-status.is-enabled {
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
}

.jobick-card-status.is-disabled {
  background: rgba(108, 117, 125, 0.14);
  color: #6c757d;
}

.jobick-application-counts {
  border-top: 1px solid var(--jobick-border);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  padding-top: 14px;
}

.jobick-application-counts span {
  color: #6e6e6e;
  font-size: 12px;
}

.jobick-application-counts strong {
  color: var(--jobick-heading);
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.jobick-page .btn-info.btn-sm {
  align-items: center;
  background: var(--jobick-primary-soft);
  border: 0;
  border-radius: 8px;
  color: var(--jobick-primary);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.jobick-page .btn-info.btn-sm:hover,
.jobick-page .btn-info.btn-sm:focus,
.jobick-page .btn-info.btn-sm:active {
  background: var(--jobick-primary);
  color: #fff;
}

.jobick-result-detail {
  align-items: center;
  border-bottom: 1px solid var(--jobick-border);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 0;
}

.jobick-result-detail:first-child {
  padding-top: 0;
}

.jobick-result-detail:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.jobick-result-detail span {
  color: #6e6e6e;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.jobick-result-detail strong {
  color: var(--jobick-heading);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}

.jobick-exam-code-modal .modal-dialog {
  max-width: min(1320px, calc(100vw - 48px));
}

.jobick-exam-code-modal .modal-body {
  max-height: calc(100vh - 210px);
  overflow-y: auto;
}

.jobick-picker-group .input-group-text {
  background: #fff;
  border: 1px solid var(--jobick-border);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  color: var(--jobick-primary);
  min-height: 45px;
}

.jobick-picker-group .form-control {
  border-radius: 0 8px 8px 0;
}

.dtp {
  font-family: var(--jobick-font-family);
}

.dtp > .dtp-content {
  border-radius: 8px;
  max-width: 360px;
}

.dtp div.dtp-date,
.dtp div.dtp-time,
.dtp table.dtp-picker-days tr > td > a.selected {
  background: #8bc34a;
}

.dtp .p10 > a {
  color: #689f38;
}

.dtp table.dtp-picker-days tr > td > a:hover,
.dtp .dtp-actual-meridien a.selected,
.dtp .dtp-picker-time > a.dtp-select-hour.selected,
.dtp .dtp-picker-time > a.dtp-select-minute.selected {
  background: #8bc34a;
  color: #fff;
}

.dtp-buttons .dtp-btn-ok,
.dtp-buttons .dtp-btn-clear,
.dtp-buttons .dtp-btn-cancel {
  border-radius: 8px;
  font-weight: 700;
}

.dtp-buttons .dtp-btn-ok {
  color: #689f38;
}

.swal-list {
  margin: 0;
  padding-left: 20px;
  text-align: left;
}

.jobick-page .dataTables_wrapper .dataTables_paginate {
  margin-top: 22px;
  padding-top: 0;
}

.jobick-page .pagination {
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.jobick-page .page-item .page-link {
  align-items: center;
  background: #fde8e3;
  border: 0;
  border-radius: 50% !important;
  color: var(--jobick-primary);
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  line-height: 1;
  min-width: 52px;
  padding: 0;
}

.jobick-page .page-item.previous .page-link,
.jobick-page .page-item.next .page-link {
  background: #fff;
  border: 1px solid var(--jobick-primary);
  font-size: 0;
}

.jobick-page .page-item.previous .page-link::before,
.jobick-page .page-item.next .page-link::before {
  color: var(--jobick-primary);
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
}

.jobick-page .page-item.previous .page-link::before {
  content: "\f100";
}

.jobick-page .page-item.next .page-link::before {
  content: "\f101";
}

.jobick-page .page-item.active .page-link,
.jobick-page .page-item .page-link:hover {
  background: var(--jobick-primary);
  border-color: var(--jobick-primary);
  color: #fff !important;
}

.jobick-page .page-item.previous .page-link:hover::before,
.jobick-page .page-item.next .page-link:hover::before {
  color: #fff;
}

.jobick-page .page-item.disabled .page-link {
  opacity: 0.55;
}

.jobick-page .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.jobick-page .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: var(--jobick-primary) !important;
  border-color: var(--jobick-primary) !important;
  color: #fff !important;
}

.jobick-page .dataTables_wrapper .dataTables_paginate > .paginate_button {
  align-items: center;
  background: #fde8e3 !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: var(--jobick-primary) !important;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  margin-left: 8px;
  min-width: 52px;
  padding: 0 !important;
}

.jobick-page .dataTables_wrapper .dataTables_paginate > .paginate_button.previous,
.jobick-page .dataTables_wrapper .dataTables_paginate > .paginate_button.next {
  background: #fff !important;
  border: 1px solid var(--jobick-primary) !important;
}

.jobick-page .dataTables_wrapper .dataTables_paginate > .paginate_button:hover {
  background: var(--jobick-primary) !important;
  color: #fff !important;
}

@media (max-width: 767.98px) {
  .jobick-page .content-header,
  .jobick-page .content,
  .dashboard-page .content-header,
  .dashboard-page .content,
  .profile-page .content-header,
  .profile-page .content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .jobick-page h1,
  .dashboard-page .content-header h1,
  .profile-page .content-header h1 {
    font-size: 24px;
  }

  .profile-detail-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .profile-detail-value {
    text-align: left;
  }

  .step-label {
    display: none;
  }

  .jobick-config-card-horizontal .jobick-detail-list {
    flex-direction: column;
    gap: 0;
  }

  .jobick-config-card-horizontal .jobick-detail-item {
    border-bottom: 1px solid var(--jobick-border);
    border-right: 0;
    padding: 15px 0;
  }

  .jobick-config-card-horizontal .jobick-detail-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .jobick-config-actions .btn {
    width: 100%;
  }

  .jobick-subscription-history-head {
    flex-direction: column;
  }

  .jobick-subscription-timeline {
    grid-template-columns: 1fr;
  }

  .jobick-subscription-timeline::before {
    display: none;
  }
}
