@charset "UTF-8";

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #06b6d4;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --border-radius: 8px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Dark mode colors */
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --dark-surface-elevated: #334155;
  --dark-text: #f1f5f9;
  --dark-text-muted: #94a3b8;
  --dark-border: #334155;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  margin-bottom: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--gray-50);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header Sticky - Always fixed at top */
header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
  width: 100%;
  background-color: var(--white);
}

/* Dark mode esintileri - bazı elementlerde */

.navbar {
  background: var(--white) !important;
  border-bottom: 1px solid var(--gray-200);
}

/* Card */
.card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-header {
  padding: 0.75rem 1rem;
  font-weight: 600;
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}

/* Dark mode esintili input fields */
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), inset 0 1px 2px rgba(15, 23, 42, 0.05);
  background-color: var(--white);
}

.form-control,
.form-select {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
}


/* Dark mode esintili buttons */
.btn {
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
}

.btn-success {
  background-color: var(--success-color);
  border: none;
  color: var(--white);
}

/* Dark mode esintili footer */
.footer {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid var(--gray-200);
  backdrop-filter: blur(10px);
}

/* Dark mode esintili modal */
.modal-content {
  background: linear-gradient(to bottom, #ffffff, #fafbfc);
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

.modal-header {
  border-bottom: 1px solid var(--gray-200);
}

.modal-footer {
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(to top, #f8fafc, #ffffff);
}

/* Dark mode esintili table */
.table thead th {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 2px solid var(--gray-300);
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
  margin-top: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06), 0 1px 3px 0 rgba(0, 0, 0, 0.04);
  padding: 0.875rem 0;
  border-bottom: 2px solid var(--primary-color);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  padding: 0.25rem 0;
  position: relative;
}

.navbar-nav {
  gap: 0.25rem;
}

.navbar-nav .nav-link {
  color: var(--gray-700);
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  margin: 0 0.125rem;
  transition: all 0.2s ease;
  font-size: 0.9375rem;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.08);
}

.navbar-nav .nav-link:hover::before {
  width: calc(100% - 1.75rem);
}

.navbar-nav .nav-link:active,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.navbar-nav .nav-link.active::before {
  width: calc(100% - 1.75rem);
  background: var(--primary-color);
}

.navbar-nav .nav-link.text-muted {
  color: var(--gray-600);
  font-weight: 500;
}

.navbar-nav .nav-link.text-muted:hover {
  color: var(--gray-800);
  background-color: var(--gray-50);
}

.navbar-toggler {
  border: 1.5px solid var(--gray-300);
  padding: 0.375rem 0.625rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  background-color: transparent;
}

.navbar-toggler:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.08));
  border-color: var(--primary-color);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  border-color: var(--primary-color);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2837, 99, 235, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .btn {
  margin-left: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.navbar-nav .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border: none;
  box-shadow: 0 2px 4px 0 rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}

.navbar-nav .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.navbar-nav .btn-primary:hover::before {
  left: 100%;
}

.navbar-nav .btn-primary:hover {
  box-shadow: 0 4px 8px 0 rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.navbar-nav .btn-outline-primary {
  border-width: 1.5px;
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.navbar-nav .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px 0 rgba(37, 99, 235, 0.25);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-color: transparent;
  color: white;
}

/* User Dropdown Styles */
.user-dropdown-toggle {
  padding: 0.375rem 0.75rem !important;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.user-dropdown-toggle:hover {
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary-color);
}

.user-dropdown-toggle::after {
  margin-left: 0.5rem;
  vertical-align: 0.15em;
}

.user-avatar {
  font-size: 1.375rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-name {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.user-dropdown-toggle:hover .user-name {
  color: var(--primary-color);
}

.user-dropdown-menu {
  min-width: 200px;
  padding: 0;
  margin-top: 0.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.04);
  background: white;
}

.user-dropdown-menu>li {
  margin: 0;
  padding: 0;
}

.user-dropdown-menu .dropdown-header {
  padding: 0.625rem 0.875rem;
  background: transparent;
  border-bottom: 1px solid var(--gray-200);
  margin: 0;
}

.user-dropdown-menu .user-info {
  display: flex;
  flex-direction: column;
}

.user-dropdown-menu .user-info .fw-semibold {
  color: var(--gray-800);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown-menu .dropdown-item {
  padding: 0.5625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  transition: background-color 0.15s ease, color 0.15s ease;
  display: flex;
  align-items: center;
  border: none;
  line-height: 1.4;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.user-dropdown-menu .dropdown-item i {
  font-size: 0.875rem;
  width: 1.125rem;
  min-width: 1.125rem;
  color: var(--gray-500);
  transition: color 0.15s ease;
  margin-right: 0.625rem;
  text-align: center;
}

.user-dropdown-menu .dropdown-item:hover {
  background-color: var(--gray-50);
  color: var(--primary-color);
}

.user-dropdown-menu .dropdown-item:hover i {
  color: var(--primary-color);
}

.user-dropdown-menu .dropdown-item.logout-btn {
  color: var(--gray-700);
}

.user-dropdown-menu .dropdown-item.logout-btn i {
  color: var(--danger-color);
}

.user-dropdown-menu .dropdown-item.logout-btn:hover {
  background-color: rgba(239, 68, 68, 0.08);
  color: var(--danger-color);
}

.user-dropdown-menu .dropdown-item.logout-btn:hover i {
  color: var(--danger-color);
}

/* Navbar Dropdown Responsive */
@media (max-width: 991px) {
  .user-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0.875rem !important;
  }

  .user-name {
    max-width: none;
  }

  .user-dropdown-menu {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0;
  }

  .user-dropdown-menu .dropdown-header {
    padding: 0.625rem 0.875rem;
  }

  .user-dropdown-menu .dropdown-item {
    padding: 0.5625rem 0.875rem;
  }
}

/* Navbar Responsive */
@media (max-width: 991px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-nav {
    margin-top: 0.75rem;
    gap: 0.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.625rem 1rem;
    margin: 0;
  }

  .navbar-nav .btn {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  .navbar-collapse {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.75rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.375rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem;
  }
}

/* Cards */
.card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-header {
  padding: 0.75rem 1rem;
  font-weight: 600;
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}

.card-body {
  padding: 1.25rem;
}

.card-footer {
  padding: 0.75rem 1rem;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

/* Buttons */
.btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-success {
  background-color: var(--success-color);
  color: var(--white);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--gray-600);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--gray-700);
  color: var(--white);
}

.btn-outline-danger {
  background-color: transparent;
  color: var(--danger-color);
  border: 2px solid var(--danger-color);
}

.btn-outline-danger:hover {
  background-color: var(--danger-color);
  color: var(--white);
}

.btn-outline-success {
  background-color: transparent;
  color: var(--success-color);
  border: 2px solid var(--success-color);
}

.btn-outline-success:hover {
  background-color: var(--success-color);
  color: var(--white);
}

.btn-link {
  background: none;
  border: none;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0;
  box-shadow: none;
}

.btn-link:hover {
  background: none;
  color: var(--primary-dark);
  text-decoration: underline;
  box-shadow: none;
}

/* Forms */
.form-control,
.form-select {
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  background-color: var(--white);
  color: var(--gray-800);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  display: block;
}

.form-text {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Badges */
.badge {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
}

.bg-primary {
  background-color: var(--primary-color) !important;
  color: var(--white);
}

.bg-success {
  background-color: var(--success-color) !important;
  color: var(--white);
}

.bg-warning {
  background-color: var(--warning-color) !important;
  color: var(--white);
}

.bg-danger {
  background-color: var(--danger-color) !important;
  color: var(--white);
}

.bg-info {
  background-color: var(--info-color) !important;
  color: var(--white);
}

.bg-secondary {
  background-color: var(--gray-500) !important;
  color: var(--white);
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border-radius: var(--border-radius);
  font-size: 0.9375rem;
  border: 1px solid transparent;
}

.alert-success {
  background-color: #d1fae5;
  border-color: var(--success-color);
  color: #065f46;
}

.alert-danger {
  background-color: #fee2e2;
  border-color: var(--danger-color);
  color: #991b1b;
}

.alert-warning {
  background-color: #fef3c7;
  border-color: var(--warning-color);
  color: #92400e;
}

.alert-info {
  background-color: #cffafe;
  border-color: var(--info-color);
  color: #155e75;
}

/* Tables */
.table {
  width: 100%;
  font-size: 0.9375rem;
  border-collapse: collapse;
}

.table thead th {
  background-color: var(--gray-100);
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-300);
}

.table tbody td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}


.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--gray-50);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.875rem;
  text-align: center;
}

.footer a {
  color: var(--gray-600);
}


/* Utilities */
.text-muted {
  color: var(--gray-500) !important;
}

.text-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-success {
  background-color: var(--success-color) !important;
}

.bg-warning {
  background-color: var(--warning-color) !important;
}

.bg-info {
  background-color: var(--info-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--gray-200) !important;
}

.border-top {
  border-top: 1px solid var(--gray-200) !important;
}

.shadow {
  box-shadow: var(--shadow) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* Job Cards Special Styling */
.job-card {
  border: 1px solid var(--gray-200) !important;
  overflow: hidden;
  background-color: var(--white);
}

.job-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--gray-200);
}

.job-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-200);
  color: var(--gray-500);
  position: relative;
  overflow: hidden;
}

.job-card-image-placeholder i {
  font-size: 4.5rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.job-card-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
}

.salary-badge {
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
  border: none;
}

.job-card .card-body {
  padding: 1.5rem;
  background-color: var(--white);
}

.job-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.job-card .card-footer {
  padding: 1.25rem 1.5rem;
  background-color: var(--white);
  border-top: 1px solid var(--gray-100);
}

.job-card .card-footer .btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

.company-logo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9375rem;
  border: 2px solid var(--gray-100);
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-logo-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-100);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Google Ads Sidebar */
.ads-sidebar {
  position: sticky;
  top: 0px;
  z-index: 50;
}

.ad-container {
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
}

.ad-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.google-ads-placeholder {
  width: 100%;
  min-height: 250px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ads-content {
  width: 100%;
  min-width: 250px;
  text-align: center;
}

.ads-content ins {
  display: block !important;
  min-width: 250px;
  min-height: 250px;
}

.ads-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
  margin: 0;
}

.ads-subtext {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0.25rem 0 0 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .ads-sidebar {
    display: none;
  }
}

.company-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
}

.company-logo-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
}

/* Filter Card - Compact & Minimalist Design */
.filter-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.filter-header {
  background-color: var(--white);
  border: none;
  border-bottom: 1px solid var(--gray-200);
  padding: 0.5rem 0.75rem;
}

.filter-header h5,
.filter-header h6 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-body {
  padding: 0.75rem;
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.filter-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.filter-select {
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 0.4375rem 0.625rem;
  font-size: 0.8125rem;
  background-color: var(--white);
  color: var(--gray-800);
}

.filter-select:focus {
  border-color: var(--gray-400);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

/* Enhanced Search Input */
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-icon {
  position: absolute;
  left: 0.875rem;
  color: var(--gray-500);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
  transition: color 0.2s ease;
}

.search-input-enhanced {
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  padding: 0.625rem 2.75rem 0.625rem 2.5rem;
  font-size: 0.875rem;
  background-color: var(--white);
  color: var(--gray-800);
  width: 100%;
  transition: all 0.2s ease;
}

.search-input-enhanced::placeholder {
  color: var(--gray-400);
  font-size: 0.8125rem;
}

.search-input-enhanced:focus {
  border-color: var(--gray-300);
  outline: none;
  box-shadow: none;
  background-color: var(--white);
}

.search-input-focused .search-input-icon {
  color: var(--gray-500);
}

.search-clear-btn {
  position: absolute;
  right: 0.625rem;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

.search-clear-btn:hover {
  color: var(--gray-600);
  background-color: var(--gray-100);
}

.search-clear-btn:active {
  transform: scale(0.9);
}

.search-helper-text {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1.4;
}

.search-helper-text i {
  color: var(--info-color);
  font-size: 0.8125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.filter-label i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.filter-actions {
  margin-top: 0.375rem;
}

.filter-btn-submit {
  background-color: var(--gray-800);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.filter-btn-submit:hover {
  background-color: var(--gray-800);
  color: var(--white);
}

.filter-btn-clear {
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-weight: 400;
  font-size: 0.8125rem;
  background-color: var(--white);
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.filter-btn-clear:hover {
  background-color: var(--white);
  border-color: var(--gray-300);
  color: var(--gray-700);
}

/* Stats Cards */
.stats-card {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border: none;
}

.stats-card h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.stats-card h5 {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 1rem;
  }

  .card-body {
    padding: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Image Thumbnail */
.img-thumbnail {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 0.25rem;
  background-color: var(--white);
}

/* Utility Classes */
.fw-medium {
  font-weight: 500;
}

.flex-fill {
  flex: 1 1 auto;
}

/* Pagination */
.pagination {
  margin-top: 2rem;
}

.page-link {
  color: var(--primary-color);
  border: 1px solid var(--gray-300);
  padding: 0.5rem 0.75rem;
}

.page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.page-item.disabled .page-link {
  color: var(--gray-400);
  background-color: var(--white);
  border-color: var(--gray-300);
  cursor: not-allowed;
}

/* Main Content */
main {
  padding: 0;
  min-height: calc(100vh - 200px);
  margin-top: 0;
  overflow-x: hidden;
}

/* Container için header fixed durumunda üst boşluk */
.main-content-wrapper {
  margin-top: 1rem !important;
  padding-top: 0.5rem;
  scroll-margin-top: 80px;
  overflow: visible;
}

.main-content-wrapper .row {
  overflow: visible;
}

/* Spacing Overrides - Compact */
.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

/* Job Summary - Toplam İlan Gösterimi - Minimalist */
.job-summary {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
}

.job-summary .summary-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-summary .summary-text i {
  color: var(--primary-color);
  font-size: 1rem;
}

.job-summary .summary-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Sticky Filter Card */
.main-content-wrapper .col-lg-3,
.main-content-wrapper .col-md-4 {
  position: relative;
}

.sticky-filter {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 16px !important;
  z-index: 100 !important;
  max-height: calc(100vh - 32px) !important;
  overflow-y: auto;
  width: 100%;
}

/* Sticky filter scrollbar styling */
.sticky-filter::-webkit-scrollbar {
  width: 6px;
}

.sticky-filter::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 3px;
}

.sticky-filter::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 3px;
}

.sticky-filter::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* Filter Card için sticky header durumunda düzeltme */
.filter-card {
  position: relative;
}

/* Job Description */
.job-description {
  line-height: 1.8;
  color: var(--gray-700);
}

.job-description img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 1rem 0;
}

.job-description ul,
.job-description ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.job-description li {
  margin: 0.5rem 0;
}

/* Modern Job Card - Minimal Design (No Images) */
.modern-job-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.2s ease;
  position: relative;
}

.modern-job-card:not([onclick]) {
  cursor: default;
}


.company-logo-side {
  margin-right: 0.875rem;
  flex-shrink: 0;
}

.company-logo-side-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--gray-200);
}

.company-logo-side-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  border: 1px solid var(--gray-200);
}

.job-content-side {
  min-width: 0;
}

.card-body-modern {
  width: 100%;
}

.job-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.375rem 0;
  line-height: 1.4;
}

.job-title {
  color: var(--gray-900);
}

.job-title-main {
  margin-bottom: 0.5rem;
}

.job-title-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.company-name-below-title {
  margin-bottom: 0.5rem;
}

.company-name {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}

.job-status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.job-status-badges .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.job-actions {
  border-top: 1px solid var(--gray-200);
}

.filter-tabs .btn-group {
  display: flex;
  gap: 0;
}

.filter-tabs .btn {
  border-radius: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.filter-tabs .btn:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.filter-tabs .btn:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* Privacy Modal Modern Styles */
.privacy-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.privacy-modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 1.5rem 2rem;
  color: white;
}

.privacy-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

.privacy-modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.privacy-modal-body {
  padding: 2rem;
  background-color: var(--white);
}

.privacy-intro {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-100);
}

.privacy-intro .lead {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.privacy-section {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.section-header i {
  color: #667eea;
  font-size: 1.25rem;
}

.section-header h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.privacy-section p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.privacy-list li {
  padding: 0.5rem 0;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.privacy-list li i {
  color: #667eea;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.privacy-notice {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border-left: 4px solid #667eea;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.privacy-notice i {
  color: #667eea;
  font-size: 1.25rem;
}

.privacy-notice strong {
  color: var(--gray-900);
}

.privacy-modal-footer {
  border-top: 1px solid var(--gray-200);
  padding: 1.25rem 2rem;
  background-color: var(--gray-50);
}

.privacy-modal-footer .btn {
  font-weight: 600;
  border-radius: 8px;
  padding: 0.625rem 1.5rem;
}

/* Company Edit Page Styles */
.company-edit-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
}

.company-edit-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
  color: white;
}

.header-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  backdrop-filter: blur(10px);
}

.company-edit-header h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.company-edit-body {
  padding: 2.5rem;
}

.logo-preview-section {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.logo-preview-wrapper {
  display: inline-block;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-preview-image {
  max-height: 150px;
  max-width: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.form-section {
  position: relative;
}

.form-section .form-label {
  color: var(--gray-800);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.form-section .form-label i {
  color: #667eea;
  font-size: 1.125rem;
}

.form-control-lg {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  transition: all 0.2s ease;
}

.form-control-lg:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

textarea.form-control {
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  transition: all 0.2s ease;
}

textarea.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.file-upload-wrapper {
  position: relative;
}

.input-group-lg .input-group-text {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-right: none;
  color: var(--gray-600);
  border-radius: 8px 0 0 8px;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
}

.input-group-lg .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
  font-size: 0.8125rem;
}

.input-group-lg .form-control:focus {
  border-left: 1px solid #667eea;
}

.form-actions {
  background-color: var(--gray-50);
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  margin-bottom: -2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 2.5rem;
}

.form-actions .btn {
  font-weight: 600;
  border-radius: 8px;
  min-width: 140px;
  font-size: 0.875rem;
}

.form-actions .btn i {
  font-size: 1rem;
}

.alert-danger {
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
}

.company-edit-body .form-text {
  font-size: 0.75rem !important;
}

.company-edit-body .alert {
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .company-edit-body {
    padding: 1.5rem;
  }

  .form-actions {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .form-actions .d-flex {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }
}

/* Job Create Page Styles */
.job-create-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
}

.job-create-header {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  padding: 2rem;
  color: white;
}

.job-create-header .header-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  backdrop-filter: blur(10px);
}

.job-create-header h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.job-create-body {
  padding: 2.5rem;
}

.job-create-body .form-section {
  position: relative;
}

.job-create-body .form-section .form-label {
  color: var(--gray-800);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.job-create-body .form-section .form-label i {
  color: #28a745;
  font-size: 0.875rem;
}

.job-create-body .form-select-lg {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  transition: all 0.2s ease;
}

.job-create-body .form-control-lg {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
}

.job-create-body .form-select-lg:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

.job-create-body .input-group-lg .input-group-text {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
}

.job-create-body .input-group-lg .form-control {
  border-radius: 0 8px 8px 0;
  font-size: 0.8125rem;
}

.job-create-body .input-group-lg>.input-group-text:first-child {
  border-radius: 8px 0 0 8px;
}

.job-create-notice {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left: 4px solid #28a745;
  border-radius: 8px;
  padding: 1.25rem;
}

.job-create-notice i {
  color: #28a745;
  font-size: 1.25rem;
}

.job-create-notice strong {
  color: var(--gray-900);
}

.job-create-body .form-actions {
  background-color: var(--gray-50);
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  margin-bottom: -2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 2.5rem;
}

.job-create-body .form-actions .btn {
  font-weight: 600;
  border-radius: 8px;
  min-width: 140px;
  font-size: 0.875rem;
}

.job-create-body .form-actions .btn i {
  font-size: 1rem;
}

/* Select2 Small Styles */
.select2-container--bootstrap-5 .select2-selection {
  font-size: 0.8125rem !important;
  padding: 0.5rem 0.75rem !important;
  min-height: 38px !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
  font-size: 0.75rem !important;
  padding: 0.25rem 0.5rem !important;
  margin: 0.125rem !important;
}

.select2-container--bootstrap-5 .select2-search--inline .select2-search__field {
  font-size: 0.8125rem !important;
  padding: 0 !important;
}

.select2-container--bootstrap-5 .select2-results__option {
  font-size: 0.8125rem !important;
  padding: 0.5rem 0.75rem !important;
}

.select2-container--bootstrap-5 .select2-dropdown {
  font-size: 0.8125rem !important;
}

.select2-container--bootstrap-5 .select2-selection__rendered {
  font-size: 0.8125rem !important;
  line-height: 1.5 !important;
}

.select2-container--bootstrap-5 .select2-selection__placeholder {
  font-size: 0.8125rem !important;
  color: var(--gray-500) !important;
}

.job-create-body .form-text {
  font-size: 0.75rem !important;
}

.job-create-body .alert {
  font-size: 0.8125rem;
}

.job-create-body .input-group-text {
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
}

.job-create-body #descriptionEditor {
  border: 1px solid var(--gray-300);
}

.job-create-body #descriptionEditor .ql-toolbar {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.job-create-body #descriptionEditor .ql-container {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-size: 0.8125rem;
}

.job-create-body #descriptionEditor .ql-editor {
  min-height: 250px;
  font-size: 0.8125rem;
}

.job-create-body #descriptionEditor.ql-snow .ql-editor:focus {
  outline: none;
}

.job-create-body #descriptionEditor.ql-snow.ql-container:focus {
  border-color: #28a745;
}

@media (max-width: 768px) {
  .job-create-body {
    padding: 1.5rem;
  }

  .job-create-body .form-actions {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .job-create-body .form-actions .d-flex {
    flex-direction: column;
  }

  .job-create-body .form-actions .btn {
    width: 100%;
  }
}

.job-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.detail-separator {
  color: var(--gray-400);
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

.job-type {
  color: var(--gray-700);
  font-weight: 500;
}

.job-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gray-500);
  margin-left: auto;
}

.job-listings {
  width: 100%;
}

/* Company Logo Detail Page */
.company-logo-detail {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Company Logo Placeholder Detail Page */
.card-body .company-logo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  position: relative;
  overflow: hidden;
}

.card-body .company-logo-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

.card-body .company-logo-placeholder i {
  font-size: 2.5rem;
  color: white;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Job Detail Title */
.job-detail-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Job Detail Image */
.job-detail-image {
  max-width: 100%;
  max-height: 450px;
  height: auto;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

/* Job Description Section */
.job-description {
  margin-bottom: 1.75rem;
}

.section-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--gray-200);
  letter-spacing: -0.01em;
}

.description-content {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.description-content p {
  margin-bottom: 0.875rem;
}

.description-content ul,
.description-content ol {
  margin-bottom: 0.875rem;
  padding-left: 1.25rem;
}

.description-content li {
  margin-bottom: 0.4375rem;
}

.description-content h1,
.description-content h2,
.description-content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.description-content h4,
.description-content h5,
.description-content h6 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 0.875rem;
  margin-bottom: 0.625rem;
  color: var(--gray-900);
}

/* Job Tags Section */
.job-tags-section {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.tags-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.tags-title i {
  font-size: 0.875rem;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}

.position-badge {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.4375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 5px;
  line-height: 1.2;
}

.keyword-badge {
  background-color: var(--gray-600);
  color: var(--white);
  padding: 0.4375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 5px;
  line-height: 1.2;
}

.job-meta-badges {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.meta-badge {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.meta-badge i {
  font-size: 0.75rem;
}

.city-badge {
  background-color: var(--gray-700);
  color: var(--white);
}

.type-badge {
  background-color: var(--info-color);
  color: var(--white);
}

.salary-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.salary-badge i {
  color: #fef3c7;
}

.applied-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
}

.applied-badge i {
  font-size: 0.875rem;
}

.viewed-badge {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
  display: inline-flex;
  align-items: center;
}

.viewed-badge i {
  font-size: 0.875rem;
}

/* Job Details List - Compact */
.job-details-list li {
  font-size: 0.8125rem;
}

.job-details-list .small {
  font-size: 0.75rem;
}

/* Select2 Customization */
.select2-container--bootstrap-5 .select2-selection {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  min-height: 38px;
  padding: 0.125rem;
}

.select2-container--bootstrap-5 .select2-selection--single {
  height: 38px;
  padding: 0.125rem 0.75rem;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
  padding-left: 0;
  padding-right: 20px;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
  height: 36px;
  right: 8px;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select2-dropdown {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.select2-results__option {
  padding: 0.5rem 0.75rem;
}

.select2-results__option--highlighted {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Compact Pagination */
.pagination-compact {
  gap: 0.375rem;
  margin: 0 0 2rem 0;
}

.pagination-compact .page-item {
  margin: 0;
}

.pagination-compact .page-link {
  font-size: 0.875rem;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pagination-compact .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination-compact .page-item.disabled .page-link {
  background-color: var(--gray-50);
  border-color: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  opacity: 0.6;
}

.pagination-compact .page-link i {
  font-size: 0.875rem;
  line-height: 1;
}

.pagination-compact .page-item:first-child .page-link,
.pagination-compact .page-item:last-child .page-link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* ===== LOGIN PAGE MODERN DESIGN ===== */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

.login-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  z-index: 1;
}

.login-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.login-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid var(--gray-200);
}

.login-header {
  text-align: center;
  padding: 2.5rem 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(37, 99, 235, 0.01) 100%);
}

.login-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem;
  letter-spacing: -0.3px;
}

.login-subtitle {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0;
  font-weight: 400;
}

.login-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.login-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
}

.login-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  transition: all 0.2s ease;
  background: var(--white);
}

.login-input-wrapper:hover {
  border-color: var(--gray-400);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.login-input-wrapper.focused {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.login-input-icon {
  position: absolute;
  left: 0.875rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-500);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.2s ease;
}

.login-input-wrapper.focused .login-input-icon {
  color: var(--primary-color);
}

.login-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.75rem 0.875rem 0.75rem 2.75rem;
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: transparent;
  font-family: inherit;
}

.login-input::placeholder {
  color: var(--gray-400);
}

.login-input::-webkit-autofill,
.login-input::-webkit-autofill:hover,
.login-input::-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
  -webkit-text-fill-color: var(--gray-800) !important;
}

.login-error-text {
  font-size: 0.8125rem;
  color: var(--danger-color);
  margin-top: 0.25rem;
  display: block;
}

.login-alert-error {
  background: #fee2e2;
  border: 1px solid var(--danger-color);
  color: #991b1b;
  padding: 0.875rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin: -0.5rem -2rem 0.5rem -2rem;
  padding: 0.875rem 2rem;
}

/* Checkbox Styling */
.login-remember-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.login-checkbox {
  display: none;
}

.login-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  margin: 0;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.login-checkbox-label:hover {
  background-color: var(--gray-50);
}

.checkbox-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border: 2px solid var(--gray-400);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.2s ease;
  position: relative;
}

.login-checkbox:checked+.login-checkbox-label .checkbox-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.login-checkbox:checked+.login-checkbox-label .checkbox-custom::after {
  content: '';
  position: absolute;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  width: 4px;
  height: 7px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.checkbox-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  font-weight: 500;
}

.register-phone-hint {
  display: block;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* Submit Button */
.login-btn-submit {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.login-btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.login-btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-text {
  display: inline;
}

.btn-icon {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.login-btn-submit:hover .btn-icon {
  transform: translateX(2px);
}

/* Footer */
.login-footer {
  padding: 1.5rem 2rem;
  text-align: center;
  background: linear-gradient(to top, #f8fafc, #ffffff);
  border-top: 1px solid var(--gray-200);
}

.login-footer-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
}

.login-footer-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-left: 0.25rem;
}

.login-footer-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
  .login-wrapper {
    max-width: 100%;
  }

  .login-card {
    border-radius: 8px;
  }

  .login-header {
    padding: 2rem 1.5rem 1rem;
  }

  .login-title {
    font-size: 1.5rem;
  }

  .login-form {
    padding: 1.5rem;
  }

  .login-footer {
    padding: 1.25rem 1.5rem;
  }
}

/* Modern Breadcrumb Navigation */
.breadcrumb-nav {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-modern {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}

.breadcrumb-item-modern {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.breadcrumb-link {
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.375rem 0.5rem;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: var(--primary-dark);
  background-color: rgba(37, 99, 235, 0.1);
  text-decoration: none;
}

.breadcrumb-link i {
  font-size: 0.875rem;
  color: var(--primary-color);
}

.breadcrumb-separator {
  color: var(--gray-400);
  font-size: 0.75rem;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
}

.breadcrumb-item-modern.active {
  color: var(--gray-700);
}

.breadcrumb-current {
  color: var(--gray-800);
  font-weight: 600;
  padding: 0.375rem 0.5rem;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Breadcrumb responsive */
@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
  }

  .breadcrumb-modern {
    gap: 0.25rem;
  }

  .breadcrumb-item-modern {
    font-size: 0.8125rem;
  }

  .breadcrumb-link {
    padding: 0.25rem 0.375rem;
  }

  .breadcrumb-separator {
    margin: 0 0.25rem;
    font-size: 0.6875rem;
  }

  .breadcrumb-current {
    font-size: 0.8125rem;
    max-width: 200px;
  }

  .breadcrumb-link i {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb-nav {
    padding: 0.5rem 0;
  }

  .breadcrumb-item-modern {
    font-size: 0.75rem;
  }

  .breadcrumb-current {
    max-width: 150px;
  }
}

/* Upsoft Coder Promo Card */
.upsoft-coder-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.upsoft-coder-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.upsoft-coder-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.upsoft-coder-content {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.upsoft-coder-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upsoft-coder-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}

.upsoft-coder-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.upsoft-coder-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.upsoft-coder-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.2;
}

.upsoft-coder-arrow {
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.upsoft-coder-card:hover .upsoft-coder-arrow {
  transform: translateX(4px);
}

/* Upsoft Coder Responsive */
@media (max-width: 768px) {
  .upsoft-coder-content {
    padding: 0.875rem;
    gap: 0.75rem;
  }

  .upsoft-coder-icon svg {
    width: 40px;
    height: 40px;
  }

  .upsoft-coder-title {
    font-size: 1rem;
  }

  .upsoft-coder-subtitle {
    font-size: 0.8125rem;
  }

  .upsoft-coder-arrow {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .upsoft-coder-content {
    padding: 0.75rem;
    gap: 0.625rem;
  }

  .upsoft-coder-icon svg {
    width: 36px;
    height: 36px;
  }

  .upsoft-coder-title {
    font-size: 0.9375rem;
  }

  .upsoft-coder-subtitle {
    font-size: 0.75rem;
  }
}

/* Job Listings Header */
.job-listings-header {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}

.job-listings-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-listings-title-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.job-listings-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.job-listings-title-icon {
  color: var(--primary-color);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
}

.job-listings-count-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gray-200);
  color: var(--gray-700);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: none;
  gap: 0.375rem;
  border: 1px solid var(--gray-300);
}

.job-listings-count-badge i {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.job-listings-count-number {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1;
}

.job-listings-count-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
}

/* Job Listings Header Responsive */
@media (max-width: 768px) {
  .job-listings-header {
    padding: 0.875rem 1rem;
    margin-top: 1rem;
  }

  .job-listings-title {
    font-size: 1.25rem;
  }

  .job-listings-title-icon {
    font-size: 1.5rem;
  }

  .job-listings-title-section {
    gap: 1rem;
    width: 100%;
  }

  .job-listings-count-badge {
    padding: 0.3125rem 0.625rem;
    font-size: 0.75rem;
  }

  .job-listings-count-number {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .job-listings-header {
    padding: 0.75rem 0.875rem;
    margin-top: 1rem;
  }

  .job-listings-title {
    font-size: 1.125rem;
    gap: 0.375rem;
  }

  .job-listings-title-icon {
    font-size: 1.25rem;
  }

  .job-listings-title-section {
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
  }

  .job-listings-count-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    width: auto;
    justify-content: center;
  }

  .job-listings-count-number {
    font-size: 0.8125rem;
  }

  .job-listings-count-text {
    font-size: 0.75rem;
  }
}

/* Premium Badge - Twitter Style SVG */
.premium-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-left: 0.125rem;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.premium-badge svg {
  width: 100%;
  height: 100%;
  fill: #1d9bf0;
  filter: drop-shadow(0 0 2px rgba(29, 155, 240, 0.3));
}

.company-name .premium-badge {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

.company-name .premium-badge svg {
  filter: drop-shadow(0 0 1.5px rgba(29, 155, 240, 0.25));
}

/* Hover effect only for clickable premium badge */
.premium-badge-clickable {
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.premium-badge-clickable:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Company Detail Page Action Buttons */
.company-actions {
  margin-top: 1rem;
}

.company-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  width: 100%;
  text-align: center;
}

.company-action-btn i {
  font-size: 0.875rem;
}

.company-action-btn-primary {
  background-color: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}

.company-action-btn-primary:hover {
  background-color: var(--gray-800);
  border-color: var(--gray-800);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-action-btn-outline {
  background-color: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}

.company-action-btn-outline:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-900);
}

/* CV Upload Card Styles */
.cv-upload-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.cv-upload-header {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-bottom: none;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: background 0.3s ease;
}

.cv-upload-header:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
}

.cv-upload-header h6 {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.collapse-header-clickable {
  user-select: none;
}

.collapse-header-clickable .cv-toggle-btn {
  color: rgba(255, 255, 255, 0.8);
}

.collapse-header-clickable:hover .cv-toggle-btn {
  color: var(--white);
}

.collapse-header-clickable.filter-header .filter-toggle-btn {
  color: var(--gray-600);
}

.collapse-header-clickable.filter-header:hover .filter-toggle-btn {
  color: var(--primary-color);
}

.cv-upload-body {
  padding: 1rem;
}

.cv-upload-wrapper {
  position: relative;
}

.cv-file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.cv-file-label {
  display: block;
  padding: 2rem 1.5rem;
  border: 2.5px dashed var(--gray-300);
  border-radius: 12px;
  background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.cv-file-label:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f0f2f5 0%, #e8ecf1 100%);
}

.cv-file-label.dragover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #e8ecf1 0%, #e0e7ef 100%);
  transform: scale(1.02);
}

.cv-upload-icon {
  font-size: 3rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.cv-file-label:hover .cv-upload-icon {
  color: var(--primary-color);
}

.cv-upload-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cv-upload-text strong {
  font-size: 0.9375rem;
  color: var(--gray-900);
  font-weight: 600;
}

.cv-upload-text small {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.cv-file-info {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 0.875rem;
  border: 1px solid var(--gray-200);
}

.cv-file-info strong {
  color: var(--gray-900);
  display: block;
  margin-bottom: 0.25rem;
}

.cv-file-info small {
  color: var(--gray-600);
}

/* CV Process Button Loading State */
#cvProcessBtn .btn-content,
#cvProcessBtn .btn-loading,
#cvProcessBtnMobile .btn-content,
#cvProcessBtnMobile .btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#cvProcessBtn:disabled,
#cvProcessBtnMobile:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

#cvProcessBtn .spinner-border-sm,
#cvProcessBtnMobile .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

/* Filter Collapse Toggle */
.filter-toggle-btn,
.cv-toggle-btn {
  color: var(--gray-600);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.filter-toggle-btn:hover,
.cv-toggle-btn:hover {
  color: var(--primary-color);
}

/* Ensure filter toggle button is visible on white background */
.filter-header .filter-toggle-btn {
  color: var(--gray-600) !important;
}

.filter-header:hover .filter-toggle-btn {
  color: var(--primary-color) !important;
}

.filter-toggle-icon,
.cv-toggle-icon {
  transition: transform 0.3s ease;
}

.filter-toggle-btn[aria-expanded="true"] .filter-toggle-icon,
.cv-toggle-btn[aria-expanded="true"] .cv-toggle-icon {
  transform: rotate(180deg);
}

/* CV Filter Active Card Styles */
.cv-filter-active-card {
  border: 2px solid #10b981;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.cv-filter-active-card .card-body {
  padding: 1rem;
}

/* CV Match Completed Card Styles */
.cv-match-completed-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.cv-match-success-icon {
  font-size: 3rem;
  color: #10b981;
}

.cv-match-completed-card h6 {
  color: var(--gray-900);
  font-weight: 600;
  font-size: 1rem;
}

.cv-match-completed-card .btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.2s ease;
}

.cv-match-completed-card .btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {

  .cv-upload-card,
  .matched-jobs-card {
    margin-bottom: 1rem;
  }

  .cv-file-label {
    padding: 1.5rem 1rem;
  }

  .cv-upload-icon {
    font-size: 2.5rem;
  }
}

/* ===== LAYOUT STYLES (from _Layout.cshtml.css) ===== */

/* Modern Layout Styles */
body {
  background-color: #f8fafc;
}

a.navbar-brand {
  white-space: normal;
  text-align: left;
  word-break: break-word;
  text-decoration: none;
}

/* Link Styles */
a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d4ed8;
  text-decoration: none;
}

/* Button Styles */
.btn-primary {
  color: #fff;
  background-color: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn-success {
  background-color: #10b981;
  border-color: #10b981;
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-success:hover {
  background-color: #059669;
  border-color: #059669;
  color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn-outline-primary {
  color: #2563eb;
  border: 2px solid #2563eb;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.btn-outline-danger {
  color: #ef4444;
  border: 2px solid #ef4444;
  background-color: transparent;
}

.btn-outline-danger:hover {
  background-color: #ef4444;
  border-color: #ef4444;
  color: #fff;
}

.btn-outline-success {
  color: #10b981;
  border: 2px solid #10b981;
  background-color: transparent;
}

.btn-outline-success:hover {
  background-color: #10b981;
  border-color: #10b981;
  color: #fff;
}

.btn-secondary {
  background-color: #64748b;
  border-color: #64748b;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #475569;
  border-color: #475569;
  color: #fff;
}

.btn-warning {
  background-color: #f59e0b;
  border-color: #f59e0b;
  color: #fff;
}

.btn-warning:hover {
  background-color: #d97706;
  border-color: #d97706;
  color: #fff;
}

.btn-info {
  background-color: #06b6d4;
  border-color: #06b6d4;
  color: #fff;
}

.btn-info:hover {
  background-color: #0891b2;
  border-color: #0891b2;
  color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #2563eb;
  border-color: #2563eb;
}

/* Border Styles */
.border-top {
  border-top: 1px solid #e2e8f0 !important;
}

.border-bottom {
  border-bottom: 1px solid #e2e8f0 !important;
}

.border-warning {
  border-color: #f59e0b !important;
  border-width: 2px !important;
}

/* Modern Footer - Compact & Elegant */
.footer-modern {
  background: #ffffff;
  color: #475569;
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Brand Section */
.footer-brand {
  margin-bottom: 0;
}

.footer-brand-title {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
}

.footer-brand-title i {
  color: #2563eb;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.footer-brand-description {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 280px;
  font-weight: 400;
}

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
}

.social-link:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
}

/* Footer Sections */
.footer-section {
  margin-bottom: 0;
}

.footer-section-title {
  color: #1e293b;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-link-btn {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 400;
  width: 100%;
}

.footer-links a:hover,
.footer-link-btn:hover {
  color: #2563eb;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact i {
  color: #94a3b8;
  font-size: 0.875rem;
  min-width: 18px;
  margin-right: 0.5rem;
}

.footer-contact a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
}

.footer-contact a:hover {
  color: #2563eb;
}

.footer-contact span {
  color: #64748b;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.8125rem;
  margin: 0;
  font-weight: 400;
}

.footer-made-with {
  color: #94a3b8;
  font-size: 0.8125rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
  font-weight: 400;
}

.footer-made-with i {
  color: #ef4444;
  font-size: 0.875rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-modern {
    padding: 2rem 0 1rem;
    margin-top: 2rem;
  }

  .footer-brand-title {
    font-size: 1.125rem;
  }

  .footer-brand-description {
    font-size: 0.8125rem;
  }

  .footer-section-title {
    font-size: 0.8125rem;
    margin-top: 1.25rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    text-align: center;
  }

  .footer-made-with {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .footer-modern {
    padding: 1.5rem 0 1rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Navbar - Sticky */
header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
  width: 100%;
}

.navbar {
  background-color: #fff !important;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.navbar-light .navbar-nav .nav-link {
  color: #475569;
  font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #2563eb;
  background-color: #f1f5f9;
}

/* Main Content */
main {
  padding: 0;
  min-height: calc(100vh - 200px);
  margin-top: 0;
  overflow-x: hidden;
}

/* Container için header fixed durumunda üst boşluk */
.main-content-wrapper {
  margin-top: 1rem !important;
  padding-top: 0.5rem;
  scroll-margin-top: 80px;
  overflow: visible !important;
}

.main-content-wrapper .row {
  overflow: visible !important;
}

/* Card Header Colors */
.card-header.bg-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  color: #fff;
  border-bottom: none;
}

.card-header.bg-success {
  background: linear-gradient(135deg, #10b981, #34d399) !important;
  color: #fff;
  border-bottom: none;
}

.card-header.bg-warning {
  background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
  color: #1e293b;
  border-bottom: none;
}

.card-header.bg-info {
  background: linear-gradient(135deg, #06b6d4, #22d3ee) !important;
  color: #fff;
  border-bottom: none;
}

/* Stats Cards Gradient */
.card.bg-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card.bg-success {
  background: linear-gradient(135deg, #10b981, #34d399) !important;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card.bg-warning {
  background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card.bg-info {
  background: linear-gradient(135deg, #06b6d4, #22d3ee) !important;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Text Dark Override for Warning Cards */
.card.bg-warning.text-dark,
.card.bg-warning .text-dark,
.card-header.bg-warning.text-dark {
  color: #1e293b !important;
}

/* Text White for Gradient Cards */
.card.bg-primary .text-white,
.card.bg-success .text-white,
.card.bg-info .text-white {
  color: #fff !important;
}