/* ============================================================================
   NayodaJobs — Stylesheet
   ============================================================================
   ICINDEKILER (Ctrl+F ile arayin):

   1. DESIGN TOKENS — :root variables, color palette, glass blur, radius
   2. BASE — body, typography, links
   3. LAYOUT UTILITIES — .glass-panel, .grid-2/3, .flex-between, .hidden
   4. FORMS — input, label, select, textarea, .form-group, radio/checkbox
   5. BUTTONS — .btn (primary/secondary/danger/success), .btn-sm
   6. BADGES — status, role, application status, location, category
   7. TABLES — .table-container, .data-table
   8. NAVIGATION — header, .nav-links, hamburger, mobile-overlay
   9. NOTIFICATIONS — toast, dropdown bell, badge counters
  10. MODAL — overlay, content, close button
  11. DASHBOARD STATS — .stat-card, .stat-value
  12. PAGINATION — .pagination, .pagination-btn
  13. SEARCH FILTERS — .search-filters, .filter-row
  14. APPLICATION CARDS — basvuru karti
  15. JOB CARDS / META — job kartlari, position badges
  16. PROFILE — .profile-section, photo upload
  17. CHAT / MESSAGES — bubble, conversation list, chat layout
  18. RATINGS — stars, badge, modal
  19. DISPUTES — filter buttons, dispute cards
  20. EXPERIENCE — exp-badge, exp-app-card
  21. KVKK — kvkk-content typography
  22. MAINTENANCE — banner, full-screen
  23. UTILITY CLASSES — spacing, typography, layout helpers
  24. SKELETON LOADERS — animated placeholders
  25. EMPTY STATES — anlamli yonlendirme bos durumlar
  26. APPLICANT ROW — modal aday secim satiri
  27. FORM ERRORS — inline validation hata mesajlari
  28. RESPONSIVE — @media queries (768px, 480px)
   ============================================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --bg-color: #0d1117;
  --panel-bg: rgba(22, 27, 34, 0.7);
  --panel-border: rgba(255, 255, 255, 0.1);
  --text-primary: #c9d1d9;
  --text-secondary: #8b949e;
  --heading-color: #ffffff;
  --header-bg: rgba(13, 17, 23, 0.8);
  --input-bg: rgba(13, 17, 23, 0.8);
  --input-border: rgba(255, 255, 255, 0.15);
  --hover-bg: rgba(255, 255, 255, 0.05);
  --primary-color: #58a6ff;
  --primary-hover: #1f6feb;
  --danger-color: #f85149;
  --success-color: #2ea043;
  --warning-color: #d29922;
  --glass-blur: 12px;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Light theme — body.theme-light ile aktif olur, JS toggle */
body.theme-light {
  --bg-color: #f6f8fa;
  --panel-bg: rgba(255, 255, 255, 0.92);
  --panel-border: rgba(27, 31, 36, 0.15);
  --text-primary: #24292e;
  --text-secondary: #586069;
  --heading-color: #1f2328;
  --header-bg: rgba(255, 255, 255, 0.85);
  --input-bg: #ffffff;
  --input-border: rgba(27, 31, 36, 0.2);
  --hover-bg: rgba(208, 215, 222, 0.32);
  --primary-color: #0969da;
  --primary-hover: #0550ae;
  --danger-color: #cf222e;
  --success-color: #1a7f37;
  --warning-color: #9a6700;
}

/* Light theme'de body radial gradient'leri yumusat */
body.theme-light {
  background:
    radial-gradient(ellipse at top left, rgba(3, 102, 214, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(40, 167, 69, 0.08), transparent 50%),
    var(--bg-color);
}

/* ============================================================
   2. BASE
   ============================================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(88, 166, 255, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(46, 160, 67, 0.05), transparent 25%);
  background-attachment: fixed;
}

/* Glassmorphism Panels */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--panel-border);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  transition: var(--transition);
}

.glass-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Typography */
h1,
h2,
h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.phone-input-group select {
  width: 100px;
  flex-shrink: 0;
}

.phone-input-group input {
  flex: 1;
}

.phone-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.phone-toggle-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--primary-color);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.btn-danger {
  background-color: transparent;
  color: var(--danger-color);
  border: 1px solid var(--danger-color);
}

.btn-danger:hover {
  background-color: var(--danger-color);
  color: #fff;
}

.btn-success {
  background-color: var(--success-color);
  color: #fff;
}

/* Layout */
header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--panel-border);
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

main {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Utilities */
.hidden {
  display: none !important;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Grid systems */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Badges */
.badge {
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-active {
  background: rgba(46, 160, 67, 0.2);
  color: var(--success-color);
}

.badge-pending {
  background: rgba(210, 153, 34, 0.2);
  color: var(--warning-color);
}

.badge-rejected {
  background: rgba(248, 81, 73, 0.2);
  color: var(--danger-color);
}

/* Loaders and Notifications */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.notification.success {
  background: var(--success-color);
  box-shadow: 0 4px 12px rgba(46, 160, 67, 0.3);
}

.notification.error {
  background: var(--danger-color);
  box-shadow: 0 4px 12px rgba(248, 81, 73, 0.3);
}

/* Table styling for Admin/Employer */
.table-container {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--panel-border);
}

th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: var(--text-primary);
}

tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Modal Stili */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 100%;
}

/* Select ve Option Stilleri */
select option {
  background-color: var(--bg-color); /* #0d1117 */
  color: var(--text-primary);
}

select:focus {
  outline: none;
  border-color: var(--primary-color) !important;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.4rem 0.75rem;
  background: var(--panel-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.pagination-btn:hover:not(:disabled):not(.active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(88, 166, 255, 0.1);
}

.pagination-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(88, 166, 255, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: var(--panel-border);
  color: var(--text-secondary);
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  user-select: none;
}

.pagination-info {
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Search & Filter Panel */
.search-filters {
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.search-filters:hover {
  transform: none;
}

.search-bar {
  margin-bottom: 1rem;
}

.search-bar input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1.05rem;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  color: var(--text-primary);
  transition: var(--transition);
}

.search-bar input::placeholder {
  color: var(--text-secondary);
  font-size: 1rem;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

.filter-row {
  margin-bottom: 1rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--panel-border);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

/* Responsive: Search Filters -- 768px media query'ye tasinmistir */

/* ============ DASHBOARD STAT CARDS ============ */
.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-info {
  color: var(--primary-color);
}

.stat-success {
  color: var(--success-color);
}

.stat-danger {
  color: var(--danger-color);
}

.stat-warning {
  color: var(--warning-color);
}

/* ============ APPLICATION CARDS (Basvurularim) ============ */
.application-card {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.application-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.application-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.application-card-title {
  margin-bottom: 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.application-card-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.application-card-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.application-card-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.application-card-actions {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--panel-border);
}

/* Application Status Badges */
.badge-applied {
  background: rgba(210, 153, 34, 0.2);
  color: var(--warning-color);
}

.badge-selected {
  background: rgba(88, 166, 255, 0.2);
  color: var(--primary-color);
}

.badge-app-rejected {
  background: rgba(248, 81, 73, 0.2);
  color: var(--danger-color);
}

.badge-completed {
  background: rgba(46, 160, 67, 0.2);
  color: var(--success-color);
}

.badge-cancelled {
  background: rgba(139, 148, 158, 0.2);
  color: var(--text-secondary);
}

/* Job Meta Badges (Il / Sektor) */
.job-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.badge-city {
  background: rgba(88, 166, 255, 0.15);
  color: var(--primary-color);
}

.badge-category {
  background: rgba(210, 153, 34, 0.15);
  color: var(--warning-color);
}

/* ============ KVKK AYDINLATMA METNI ============ */
.kvkk-content {
  line-height: 1.7;
}

.kvkk-content:hover {
  transform: none;
}

.kvkk-content h3 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--panel-border);
}

.kvkk-content h3:first-of-type {
  margin-top: 0;
}

.kvkk-content ul {
  list-style-type: none;
  padding-left: 0;
}

.kvkk-content ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.kvkk-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.kvkk-content .table-container {
  margin-bottom: 1.5rem;
}

.kvkk-content td {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* KVKK Consent Checkbox (Register Form) */
.kvkk-consent-label {
  cursor: pointer;
}

.kvkk-consent-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.kvkk-consent-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.kvkk-consent-label a:hover {
  color: var(--primary-hover);
}

/* ============ HAMBURGER MENU ============ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  z-index: 200;
  transition: var(--transition);
}

.hamburger:hover {
  border-color: var(--primary-color);
}

.hamburger:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 90;
}

.mobile-overlay.active {
  display: block;
}

/* ============ RATING SYSTEM ============ */

/* Rating badge -- ilan kartlarinda isveren adinin yaninda */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(210, 153, 34, 0.15);
  border: 1px solid rgba(210, 153, 34, 0.25);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warning-color);
  cursor: pointer;
  transition: var(--transition);
  vertical-align: middle;
  line-height: 1;
}

.rating-badge:hover {
  background: rgba(210, 153, 34, 0.25);
  border-color: rgba(210, 153, 34, 0.4);
  transform: scale(1.05);
}

.rating-badge:focus-visible {
  outline: 2px solid var(--warning-color);
  outline-offset: 2px;
}

.rating-badge-star {
  font-size: 0.85rem;
  line-height: 1;
}

.rating-badge-count {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Rating stars -- yildiz gosterimi (buyuk, modal icinde) */
.rating-stars {
  display: inline-flex;
  gap: 0.15rem;
  font-size: 1.5rem;
  line-height: 1;
}

.rating-stars-lg {
  font-size: 2rem;
  gap: 0.25rem;
}

.rating-star-filled {
  color: var(--warning-color);
}

.rating-star-empty {
  color: var(--text-secondary);
  opacity: 0.3;
}

.rating-star-half {
  position: relative;
  color: var(--text-secondary);
  opacity: 0.3;
}

.rating-star-half::before {
  content: "\2605";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--warning-color);
  opacity: 1;
  overflow: hidden;
  width: 50%;
}

/* Rating modal -- degerlendirme detay modali */
.rating-modal-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--panel-border);
  margin-bottom: 1.5rem;
}

.rating-modal-avg {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--warning-color);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.rating-modal-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.rating-modal-list {
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 0.25rem;
}

.rating-modal-list::-webkit-scrollbar {
  width: 4px;
}

.rating-modal-list::-webkit-scrollbar-track {
  background: transparent;
}

.rating-modal-list::-webkit-scrollbar-thumb {
  background: var(--panel-border);
  border-radius: 4px;
}

/* Rating card -- tek degerlendirme karti */
.rating-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}

.rating-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.rating-card-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-card-stars .rating-stars {
  font-size: 1rem;
}

.rating-card-score {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--warning-color);
}

.rating-card-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.rating-card-rater {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.rating-card-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.rating-empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.rating-loading {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============ FILE UPLOAD (CV Yukleme) ============ */

/* Drag & drop alani */
.file-upload-area {
  border: 2px dashed var(--panel-border);
  border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--hover-bg);
  position: relative;
}

.file-upload-area:hover {
  border-color: var(--primary-color);
  background: rgba(88, 166, 255, 0.05);
}

.file-upload-area:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.file-upload-area.drag-over {
  border-color: var(--primary-color);
  background: rgba(88, 166, 255, 0.1);
  border-style: solid;
  transform: scale(1.01);
  box-shadow: 0 0 20px rgba(88, 166, 255, 0.15);
}

.file-upload-icon {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.file-upload-area:hover .file-upload-icon,
.file-upload-area.drag-over .file-upload-icon {
  color: var(--primary-color);
}

.file-upload-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.file-upload-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Upload progress bar */
.upload-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.upload-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Dosya listesi */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Dosya karti */
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  gap: 1rem;
}

.file-item:hover {
  transform: translateY(-1px);
}

.file-item-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.file-item-icon {
  flex-shrink: 0;
}

.file-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.file-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-item-meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.file-item-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Kucuk butonlar (dosya kartlari icin) */
.btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  min-height: auto;
}

/* ============ FAZ 9: INLINE STYLE TEMIZLIGI UTILITY'LERI ============ */

/* Cok kucuk buton (admin user card action butonlari, vb. — 0.3rem padding) */
.btn-xs {
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  min-height: auto;
}

/* Orta buton — Faz 7 JobCard action butonlari (0.4rem padding) */
.btn-md {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  min-height: auto;
}

/* Flex layout helper'lar — kart icindeki action gruplari icin yaygin */
.flex-row {
  display: flex;
  gap: 5px;
}
.flex-col-end {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.flex-wrap-sm {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* Kuk top margin — admin card status badge altinda kullanilir */
.mt-1px { margin-top: 5px; }
.mr-1px { margin-right: 5px; }

/* Modal close button konumu — index.html'deki 9 modal'da tekrar */
.modal-close-btn {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}
.modal-close-btn:hover {
  color: var(--text-primary);
}

/* ============ RESPONSIVE: 768px (Tablet / Mobil) ============ */
@media (max-width: 768px) {

  /* --- Header & Hamburger --- */
  header {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    gap: 0;
  }

  .hamburger {
    display: flex;
    order: 2;
  }

  .logo {
    order: 1;
    flex: 1;
  }

  .nav-links {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--panel-border);
    margin-top: 0.75rem;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: var(--transition);
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(88, 166, 255, 0.1);
    color: var(--primary-color);
  }

  .user-info {
    order: 3;
    margin-left: 0;
  }

  #user-display-name {
    display: none;
  }

  /* --- Genel Layout --- */
  main {
    padding: 1rem;
  }

  /* --- Typography --- */
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.05rem;
  }

  /* --- Grid sistemleri tek kolon --- */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* --- Glass Panel --- */
  .glass-panel {
    padding: 1.25rem;
  }

  /* --- Butonlar tam genislik --- */
  .flex-between {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .flex-between .btn,
  .flex-between > div {
    width: 100%;
  }

  .flex-between > div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .flex-between > div .btn {
    width: 100%;
  }

  /* --- Touch-friendly boyutlar --- */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    padding: 0.75rem 1rem;
  }

  /* --- Modal tam ekran --- */
  .modal {
    align-items: flex-start;
    padding: 0;
  }

  .modal-content {
    max-width: 100% !important;
    min-height: 100vh;
    border-radius: 0;
    border: none;
  }

  /* --- Tablo yatay kaydir --- */
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* --- Search & Filters --- */
  .search-filters .grid-3,
  .search-filters .grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .filter-actions {
    flex-direction: column;
  }

  .filter-actions .btn {
    width: 100%;
  }

  /* --- Stat Cards --- */
  #dashboard-stats.grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .stat-card {
    padding: 1rem;
  }

  /* --- Application Cards --- */
  .application-card-body {
    grid-template-columns: 1fr;
  }

  .application-card {
    padding: 1rem;
  }

  /* --- KVKK --- */
  .kvkk-content {
    padding: 1.25rem;
  }

  .kvkk-content h3 {
    font-size: 1.05rem;
  }

  /* --- Rating System --- */
  .rating-modal-list {
    max-height: 300px;
  }

  .rating-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .rating-card-info {
    text-align: left;
  }

  .rating-modal-avg {
    font-size: 2rem;
  }

  .rating-stars-lg {
    font-size: 1.5rem;
  }

  /* --- Users Filter Bar --- */
  #view-users .glass-panel {
    flex-direction: column;
    align-items: stretch;
  }

  #view-users .glass-panel select,
  #view-users .glass-panel input {
    width: 100%;
    min-width: unset;
  }

  /* --- Auth View --- */
  #view-auth {
    margin: 1rem auto !important;
    max-width: 100% !important;
  }

  /* --- Profile View --- */
  #view-profile {
    max-width: 100% !important;
  }

  /* --- CV / Dosya Upload --- */
  #cv-section {
    max-width: 100% !important;
  }

  .file-upload-area {
    padding: 1.5rem 1rem;
  }

  .file-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .file-item-actions {
    width: 100%;
  }

  .file-item-actions .btn {
    flex: 1;
  }

  .btn-sm {
    min-height: 44px;
  }
}

/* ============ RESPONSIVE: 480px (Kucuk Mobil) ============ */
@media (max-width: 480px) {

  main {
    padding: 0.75rem;
  }

  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 0.95rem;
  }

  .glass-panel {
    padding: 1rem;
    border-radius: 8px;
  }

  .badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  /* --- Pagination --- */
  .pagination {
    gap: 0.25rem;
  }

  .pagination-btn {
    min-width: 32px;
    height: 36px;
    padding: 0.25rem 0.4rem;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .pagination-ellipsis {
    min-width: 28px;
    height: 36px;
    font-size: 0.75rem;
  }

  .pagination-info {
    font-size: 0.75rem;
  }

  /* --- Notification --- */
  .notification {
    left: 10px;
    right: 10px;
    bottom: 10px;
    text-align: center;
    font-size: 0.9rem;
  }

  /* --- Stat Cards --- */
  .stat-value {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* --- CV / Dosya Upload --- */
  .file-upload-area {
    padding: 1.25rem 0.75rem;
  }

  .file-upload-icon svg {
    width: 36px;
    height: 36px;
  }

  .file-upload-text {
    font-size: 0.85rem;
  }

  .file-item-name {
    font-size: 0.8rem;
  }
}

/* ============ MESAJLASMA SISTEMI ============ */

/* Konusma karti */
.conversation-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.conversation-card:hover {
  border-color: var(--primary-color);
  background: rgba(88, 166, 255, 0.05);
}

/* Okunmamis konusma vurgusu */
.conversation-unread {
  border-left: 3px solid var(--primary-color);
}

/* Avatar (bas harf dairesi) */
.conversation-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(88, 166, 255, 0.15);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Kart orta kisim */
.conversation-card-center {
  flex: 1;
  min-width: 0;
}

.conversation-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.conversation-name {
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conversation-name-bold {
  font-weight: 600;
  color: var(--heading-color);
}

.conversation-job-badge {
  font-size: 0.7rem;
  padding: 0.15rem 0.4rem;
}

.conversation-preview {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.conversation-preview-bold {
  color: var(--text-primary);
  font-weight: 500;
}

/* Kart sag kisim */
.conversation-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}

.conversation-time {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Okunmamis mesaj sayac badge'i */
.conversation-unread-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Chat header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  position: sticky;
  top: 60px;
  z-index: 10;
}

.chat-header:hover {
  transform: none;
}

.chat-back-btn {
  flex-shrink: 0;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.chat-recipient-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-job-context {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Mesaj container */
.chat-messages-container {
  min-height: 400px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--hover-bg);
  border-left: 1px solid var(--panel-border);
  border-right: 1px solid var(--panel-border);
}

.chat-messages-container::-webkit-scrollbar {
  width: 4px;
}

.chat-messages-container::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages-container::-webkit-scrollbar-thumb {
  background: var(--panel-border);
  border-radius: 4px;
}

/* Mesaj balonlari */
.chat-bubble {
  max-width: 70%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.chat-bubble-sent {
  align-self: flex-end;
  background: rgba(88, 166, 255, 0.2);
  border: 1px solid rgba(88, 166, 255, 0.3);
  border-bottom-right-radius: 4px;
}

.chat-bubble-received {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--panel-border);
  border-bottom-left-radius: 4px;
}

.chat-bubble-content {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.chat-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.chat-bubble-time {
  font-size: 0.7rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.chat-bubble-read {
  font-size: 0.7rem;
  color: var(--primary-color);
  opacity: 0.7;
}

/* Tarih ayirici */
.chat-date-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.chat-date-separator span {
  padding: 0.25rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border: 1px solid var(--panel-border);
}

/* Mesaj gonderme alani */
.chat-input-area {
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding: 0.75rem 1rem;
}

.chat-input-area:hover {
  transform: none;
}

.chat-send-form {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.chat-input {
  flex: 1;
  resize: none;
  min-height: 40px;
  max-height: 120px;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.4;
  border-radius: 8px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text-primary);
  transition: var(--transition);
}

.chat-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

.chat-send-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  min-height: 40px;
}

.chat-input-hint {
  text-align: right;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  opacity: 0.6;
}

/* Eski mesajlari yukle butonu */
.chat-load-older {
  display: block;
  margin: 0 auto 1rem auto;
}

/* Yukleniyor gostergesi */
.chat-loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Navbar okunmamis mesaj badge'i */
.nav-unread-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--danger-color);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  margin-left: 0.35rem;
  vertical-align: middle;
  line-height: 1;
}

/* Bos durum mesaji (konusma/mesaj yok) */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
}

.empty-state:hover {
  transform: none;
}

/* ============ MESAJLASMA RESPONSIVE: 768px ============ */
@media (max-width: 768px) {
  /* Konusma listesi */
  .conversation-card {
    padding: 0.85rem 1rem;
  }

  .conversation-job-badge {
    display: none;
  }

  /* Chat ekrani -- tam ekran davranisi */
  #messages-chat-view {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
  }

  .chat-header {
    position: sticky;
    top: 0;
    border-radius: 0;
    z-index: 201;
  }

  .chat-messages-container {
    flex: 1;
    max-height: none;
    min-height: 0;
    border-left: none;
    border-right: none;
  }

  .chat-input-area {
    border-radius: 0;
    position: sticky;
    bottom: 0;
  }

  .chat-bubble {
    max-width: 85%;
  }

  /* Navbar mesaj badge */
  .nav-unread-badge {
    margin-left: 0.25rem;
  }
}

/* ============ MESAJLASMA RESPONSIVE: 480px ============ */
@media (max-width: 480px) {
  .conversation-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.9rem;
  }

  .conversation-name {
    font-size: 0.85rem;
  }

  .conversation-preview {
    font-size: 0.8rem;
  }

  .chat-bubble-content {
    font-size: 0.85rem;
  }

  .chat-input {
    font-size: 0.85rem;
  }

  .chat-send-btn {
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
  }
}

/* ============ BILDIRIM SISTEMI ============ */
.notif-wrapper {
    position: relative;
    margin-right: 1rem;
}

.notif-bell-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.4rem;
    position: relative;
    line-height: 1;
}

.theme-toggle-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
    margin-right: 0.25rem;
    transition: transform 0.2s ease;
}
.theme-toggle-btn:hover { transform: scale(1.15); }

.notif-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--danger-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.notif-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    max-height: 480px;
    overflow-y: auto;
    z-index: 300;
    margin-top: 0.5rem;
    padding: 0;
}

.notif-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--panel-border);
}

.notif-dropdown-list {
    max-height: 350px;
    overflow-y: auto;
}

.notif-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.notif-item:hover {
    background: rgba(88, 166, 255, 0.05);
}

.notif-unread {
    background: rgba(88, 166, 255, 0.08);
    border-left: 3px solid var(--primary-color);
}

.notif-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon-lg {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
}

.notif-content {
    min-width: 0;
}

.notif-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.notif-message {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.notif-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 0.15rem;
}

.notif-dropdown-footer {
    text-align: center;
    padding: 0.6rem;
    border-top: 1px solid var(--panel-border);
}

.notif-dropdown-footer a {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: none;
}

.notif-empty, .notif-loading {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Bildirim sayfa gorunumu */
.notif-page-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

.notif-page-item:hover {
    transform: translateY(-2px);
}

.notif-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .notif-dropdown {
        position: fixed;
        top: 60px;
        right: 0.5rem;
        left: 0.5rem;
        width: auto;
    }
    .notif-page-item {
        flex-wrap: wrap;
    }
    .notif-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
}

/* ============ UYUSMAZLIK YONETIMI ============ */
.dispute-card {
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.dispute-card:hover {
    border-color: var(--primary-color);
    background: rgba(88, 166, 255, 0.05);
    transform: translateY(-2px);
}

.dispute-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.dispute-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.dispute-parties {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dispute-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.dispute-job {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.dispute-reason {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.dispute-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--panel-border);
    color: var(--text-secondary);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.dispute-filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.dispute-filter-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(88, 166, 255, 0.1);
}

.badge-success {
    background: rgba(46, 160, 67, 0.2);
    color: var(--success-color);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dispute-admin-actions h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .dispute-parties {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .dispute-parties span {
        display: block;
        margin-left: 0 !important;
    }

    #dispute-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

    .dispute-filter-btn {
        flex: 1;
        min-width: 0;
        text-align: center;
        margin-right: 0.25rem;
        font-size: 0.75rem;
        padding: 0.35rem 0.5rem;
    }
}

/* ============ PROFILE FORM ============ */
.profile-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--panel-border);
}

.profile-section:last-of-type {
    border-bottom: none;
}

.profile-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.required-star {
    color: var(--danger-color);
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.radio-label input[type="radio"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

/* Checkbox grid (tecrubeler) */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-primary);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

/* Dil ve Office satir icerikleri */
.glass-panel-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
}

.dil-row-header {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.office-row-inner {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

/* Textarea profil formu */
#view-profile textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--panel-border);
    border-radius: 6px;
    color: var(--text-primary);
    padding: 0.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
}

#view-profile textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Admin gorev kategori yonetimi */
.task-cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.task-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.task-cat-tag button {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}

/* Impersonate banner */
#impersonate-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#impersonate-banner ~ #main-header {
    margin-top: 42px;
}

/* Job requirements badges */
.job-req-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-req {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.badge-req.badge-success-soft {
    background: rgba(46, 160, 67, 0.1);
    border-color: rgba(46, 160, 67, 0.3);
    color: var(--success-color);
}

.badge-req.badge-exp {
    background: rgba(88, 166, 255, 0.1);
    border-color: rgba(88, 166, 255, 0.3);
    color: var(--primary-color);
}

/* ============ DENEYIM ROZET SISTEMI ============ */

/* Ortak rozet stili */
.exp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 1px solid;
    transition: var(--transition);
    white-space: nowrap;
}

.exp-badge .exp-badge-icon {
    font-size: 0.85rem;
    line-height: 1;
}

/* Kademe 1: Bronz — 1 Yil */
.exp-badge-1 {
    background: rgba(205, 127, 50, 0.15);
    border-color: rgba(205, 127, 50, 0.4);
    color: #CD7F32;
}

/* Kademe 2: Gumus — 2 Yil */
.exp-badge-2 {
    background: rgba(176, 190, 197, 0.15);
    border-color: rgba(176, 190, 197, 0.4);
    color: #B0BEC5;
}

/* Kademe 3: Altin — 3 Yil */
.exp-badge-3 {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Kademe 4: Zumrut — 4 Yil */
.exp-badge-4 {
    background: rgba(46, 204, 113, 0.12);
    border-color: rgba(46, 204, 113, 0.4);
    color: #2ECC71;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.3);
}

/* Kademe 5: Safir — 5 Yil */
.exp-badge-5 {
    background: rgba(79, 195, 247, 0.12);
    border-color: rgba(79, 195, 247, 0.4);
    color: #4FC3F7;
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
    box-shadow: 0 0 12px rgba(79, 195, 247, 0.15);
}

/* Kademe 5+: Elmas — 5+ Yil */
.exp-badge-5plus {
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.15), rgba(124, 77, 255, 0.15));
    border-color: rgba(224, 64, 251, 0.5);
    color: #E040FB;
    text-shadow: 0 0 12px rgba(224, 64, 251, 0.4);
    box-shadow: 0 0 16px rgba(224, 64, 251, 0.2);
    animation: exp-diamond-glow 3s ease-in-out infinite alternate;
}

@keyframes exp-diamond-glow {
    0%   { box-shadow: 0 0 12px rgba(224, 64, 251, 0.15); }
    100% { box-shadow: 0 0 20px rgba(124, 77, 255, 0.3); }
}

/* Buyuk rozet (profil/dashboard icin) */
.exp-badge-lg {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 24px;
    gap: 0.5rem;
}

.exp-badge-lg .exp-badge-icon {
    font-size: 1.1rem;
}

/* Deneyim basvuru banner (dashboard) */
.exp-apply-banner {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: rgba(88, 166, 255, 0.06);
    border: 1px solid rgba(88, 166, 255, 0.2);
    text-align: center;
}

.exp-apply-banner h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.exp-apply-banner p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Deneyim basvuru modal */
.exp-form-group {
    margin-bottom: 1.2rem;
}

.exp-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.exp-form-group textarea,
.exp-form-group select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--panel-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
}

.exp-form-group textarea:focus,
.exp-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(88, 166, 255, 0.15);
}

.exp-form-group .form-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

/* Deneyim kart (admin listesi) */
.exp-app-card {
    padding: 1.2rem;
    border-radius: var(--border-radius);
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(var(--glass-blur));
    margin-bottom: 1rem;
    transition: var(--transition);
}

.exp-app-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.exp-app-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.exp-app-card-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.exp-app-card-body dt {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.6rem;
}

.exp-app-card-body dd {
    margin-left: 0;
    margin-bottom: 0.4rem;
    white-space: pre-wrap;
}

.exp-app-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Mevcut rozet durumu gosterimi */
.exp-verified-banner {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    background: rgba(46, 204, 113, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.2);
    text-align: center;
}

.exp-verified-banner p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Deneyim filtre tabs (admin) */
.exp-filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.exp-filter-tabs button {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--panel-border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.exp-filter-tabs button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.exp-filter-tabs button:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* ============ FOTOGRAF YUKLEME ============ */
.photo-section {
    margin-bottom: 2rem;
}

.photo-required-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.photo-upload-card {
    background: var(--panel-bg);
    border: 1px dashed var(--panel-border);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
}

.photo-preview {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vesikalik fotograf icin farkli aspect-ratio */
#photo-portrait .photo-preview {
    aspect-ratio: 4/5;
}

.photo-placeholder {
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.photo-icon {
    font-size: 3rem;
}

.photo-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.photo-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.photo-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-gallery-item .photo-delete-overlay {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--danger-color);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: var(--transition);
}

.photo-gallery-item:hover .photo-delete-overlay {
    display: flex;
}

/* Fotograf upload butonlarinda minimum dokunma hedefi */
.photo-actions .btn-sm {
    min-height: 40px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============ RESPONSIVE: FOTOGRAF ============ */
@media (max-width: 600px) {
    .photo-required-row {
        grid-template-columns: 1fr;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-gallery-item .photo-delete-overlay {
        display: flex;
    }
}

@media (max-width: 768px) {
    .dil-row-header {
        flex-direction: column;
        align-items: stretch;
    }

    .office-row-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==================== BAKIM MODU ==================== */

/* Banner — zamanlanmis bakim uyarisi */
.maintenance-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(210, 153, 34, 0.95), rgba(248, 81, 73, 0.9));
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.maintenance-banner.hidden {
    display: none;
}

.maintenance-banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.maintenance-banner-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Tam ekran bakim sayfasi */
.maintenance-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

.maintenance-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: maintenance-spin 4s linear infinite;
    filter: drop-shadow(0 0 20px rgba(88, 166, 255, 0.5));
}

@keyframes maintenance-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.maintenance-screen h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.maintenance-screen p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}

.maintenance-detail {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(var(--glass-blur));
    color: var(--warning-color);
    font-weight: 500;
}

.maintenance-footer {
    margin-top: 3rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Banner acikken header'i asagi kaydir */
.maintenance-banner:not(.hidden) ~ header,
.maintenance-banner:not(.hidden) ~ main {
    margin-top: 44px;
}

/* ============================================================
   UTILITY CLASSES — Inline style'lari yerine kullanilan helper'lar
   ============================================================ */

/* Spacing */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
/* mb-2 zaten var */
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }

/* Layout */
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Width */
.w-full { width: 100%; }
.max-w-sm { max-width: 400px; }
.max-w-md { max-width: 600px; }
.max-w-lg { max-width: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Typography */
.font-sm { font-size: 0.85rem; }
.font-xs { font-size: 0.75rem; }
.font-bold { font-weight: 600; }
.text-muted { color: var(--text-secondary); }
.text-primary { color: var(--primary-color); }
.text-danger { color: var(--danger-color); }
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }

/* ============================================================
   SKELETON LOADERS — Veri yuklenirken gosterilen placeholder'lar
   ============================================================ */

@keyframes skeleton-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 0%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0.04) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-line {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-line.skeleton-line-sm { height: 0.75rem; width: 60%; }
.skeleton-line.skeleton-line-md { width: 80%; }
.skeleton-line.skeleton-line-full { width: 100%; }

.skeleton-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.skeleton-card-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.skeleton-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ============================================================
   EMPTY STATES — Veri olmadiginda gosterilen anlamli yonlendirme
   ============================================================ */

.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    line-height: 1;
}

.empty-state-title {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state-message {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.empty-state-action {
    margin-top: 1rem;
}

/* ============================================================
   APPLICANT ROW — Modal'daki aday secim satiri
   ============================================================ */

.applicant-row {
    border: 1px solid var(--panel-border);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.applicant-row:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.applicant-row-info {
    flex: 1;
    min-width: 0;
}

.applicant-row-name {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.applicant-row-status {
    margin-top: 0.4rem;
}

.applicant-row-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.applicant-row-select input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* ============================================================
   FORM INLINE ERRORS — Input altinda kirmizi hata mesaji
   ============================================================ */

.form-error {
    display: block;
    color: var(--danger-color);
    font-size: 0.8rem;
    margin-top: 0.4rem;
    line-height: 1.4;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--danger-color);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
    box-shadow: 0 0 0 2px rgba(248, 81, 73, 0.2);
}

/* ============================================================
   28. RESPONSIVE TWEAKS — kucuk ekranlarda kalan polish
   ============================================================ */

@media (max-width: 768px) {
    /* Custom confirm/alert dialog mobilde tam genislik */
    #app-confirm-dialog .modal-content,
    #app-alert-dialog .modal-content {
        width: 92vw;
        max-width: 92vw !important;
        margin: 1rem;
    }

    /* Header mobilde daha kompakt */
    .notif-bell-btn {
        padding: 0.4rem 0.6rem;
        font-size: 1.1rem;
    }

    /* Logout butonu mobilde gizle (hamburger menude logout link var) */
    #logout-btn {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem !important;
    }

    /* Form errors mobilde daha az padding */
    .form-error {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Custom dialog daha bol */
    #app-confirm-dialog .modal-content,
    #app-alert-dialog .modal-content {
        padding: 1.25rem;
    }

    /* Confirm dialog butonlari dik (column) */
    #app-confirm-dialog .modal-content > .flex.gap-2.justify-between {
        flex-direction: column-reverse;
        gap: 0.5rem;
    }

    #app-confirm-dialog .btn {
        width: 100%;
    }

    /* Notification toast genis ekranda fixed; mobilde nezih konum */
    .notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

