.personnel-scroll {
  max-height: 400px;
  overflow-y: auto;
}

.table-container {
  max-height: calc(100vh - 200px);
  overflow: auto;
}

.personnel-scroll::-webkit-scrollbar,
.table-container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.personnel-scroll::-webkit-scrollbar-track,
.table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.personnel-scroll::-webkit-scrollbar-thumb,
.table-container::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 10px;
}

.hover-bg-light:hover {
  background-color: #f8f9fa;
  transition: background-color 0.3s;
}

.cursor-pointer {
  cursor: pointer;
}

@media (max-width: 768px) {
  .personnel-scroll {
      max-height: calc(2 * 93px);
  }

  .table-container {
      max-height: calc(2 * 160px);
  }
}

.table-container {
  max-height: calc(100vh - 200px);
  overflow: auto;
}

.personnel-scroll {
  max-height: 400px;
  overflow-y: auto;
}

.personnel-scroll::-webkit-scrollbar,
.table-container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.personnel-scroll::-webkit-scrollbar-track,
.table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.personnel-scroll::-webkit-scrollbar-thumb,
.table-container::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 10px;
}

.personnel-scroll::-webkit-scrollbar-thumb:hover,
.table-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.table-rounded {
  border-radius: 10px;
  overflow: hidden;
}

.table thead tr {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1;
}

.table td, .table th {
  padding: 1rem 1.5rem;
  vertical-align: middle;
}

.progress.h-15px {
  height: 15px !important;
}

.btn-icon.w-35px {
  width: 35px !important;
  height: 35px !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hover-bg-light {
  transition: background-color 0.3s ease;
}

.hover-bg-light:hover {
  background-color: #f8f9fa;
}

.cursor-pointer {
  cursor: pointer;
}

.personnel-scroll {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cdcdcd #f1f1f1;
}

.personnel-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.personnel-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.personnel-scroll::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 10px;
}

.personnel-scroll::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.h-8px {
  height: 8px !important;
}

.bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  display: inline-block;
}

.bullet-dot {
  width: 4px;
  height: 4px;
}


.custom-input-container {
  position: relative;
  width: 100%;
}

.custom-input {
  width: 100%;
  height: 42px;
  padding: 0.775rem 1rem;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #5E6278;
  background-color: #F5F8FA;
  border: 1px solid #F5F8FA;
  border-radius: 0.475rem;
  transition: all 0.2s ease;
}

.custom-input:focus {
  background-color: #EEF3F7;
  border-color: #EEF3F7;
  outline: none;
}

.custom-input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #A1A5B7;
}

/* Left icon */
.custom-input-container .custom-input-icon:first-child {
  left: 1rem;
}
.custom-input-container .custom-input.ps-10 {
  padding-left: 2.5rem;
}

/* Right icon */
.custom-input-container .custom-input-icon:last-child {
  right: 1rem;
}
.custom-input-container .custom-input.pe-10 {
  padding-right: 2.5rem;
}

/* Custom Select Styles */
.custom-select-container {
  position: relative;
  width: 100%;
}

.custom-select {
  width: 100%;
    height: 42px;
    padding: 0.775rem 3rem 0.775rem 1rem;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #5E6278;
    background-color: #F5F8FA;
    border: 1px solid #F5F8FA;
    border-radius: 0.475rem;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.2s ease;
}

.custom-select.ps-10 {
  padding-left: 2.5rem;
}

.custom-select:focus {
  background-color: #EEF3F7;
  border-color: #EEF3F7;
  outline: none;
  box-shadow: none;
}

.custom-select-arrow {
  position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #A1A5B7;
    pointer-events: none;
    z-index: 1;
}

.custom-select-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #A1A5B7;
  pointer-events: none;
  z-index: 1;
}

/* Date Input Specific Styles */
input[type="date"].custom-input {
  padding-right: 2.5rem;
}

input[type="date"].custom-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

/* Hover States */
.custom-input:hover,
.custom-select:hover {
  background-color: #EEF3F7;
  cursor: pointer;
}

.custom-select:focus + .custom-select-arrow,
.custom-select:focus + .custom-select-icon {
    color: #7E8299;
}

/* Placeholder Color */
.custom-input::placeholder {
  color: #A1A5B7;
}

/* Disabled States */
.custom-input:disabled,
.custom-select:disabled {
  background-color: #F5F8FA;
  opacity: 0.7;
  cursor: not-allowed;
}

.custom-select option {
  padding: 10px;
  font-size: 13px;
  color: #5E6278;
  background-color: #ffffff;
}

.custom-select option:checked {
  background-color: #F5F8FA;
}

/* Select hover durumunda option rengi */
.custom-select option:hover {
  background-color: #F5F8FA;
}

.gap-2 {
  gap: 2px;
}

.gap-3 {
  gap: 3px;
}

.gap-4 {
  gap: 4px;
}

.gap-5 {
  gap: 5px;
}

@media (max-width: 768px) {
  .personnel-scroll {
      max-height: calc(2 * 80px);
  }

  .table-container {
      max-height: calc(2 * 140px);
  }

  .project-gap {
    gap: 20px !important;
  }

  .card-body {
      padding: 1rem;
  }

  .fs-2 {
      font-size: 1.5rem !important;
  }

  .custom-input,
  .custom-select {
    margin-top: 8px;
  }
}

/* Font Sizes (fs) */
.fs-1 {
    font-size: 1.75rem !important; /* 28px */
}

.fs-2 {
    font-size: 1.5rem !important; /* 24px */
}

.fs-3 {
    font-size: 1.35rem !important; /* 21.6px */
}

.fs-4 {
    font-size: 1.25rem !important; /* 20px */
}

.fs-5 {
    font-size: 1.15rem !important; /* 18.4px */
}

.fs-6 {
    font-size: 1.075rem !important; /* 17.2px */
}

.fs-7 {
    font-size: 0.95rem !important; /* 15.2px */
}

.fs-8 {
    font-size: 0.85rem !important; /* 13.6px */
}

/* Font Weights (fw) */
.fw-thin {
    font-weight: 100 !important;
}

.fw-lighter {
    font-weight: 200 !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: 800 !important;
}

.fw-black {
    font-weight: 900 !important;
}

/* Responsive Font Sizes */
@media (max-width: 991.98px) {
    .fs-1 {
        font-size: 1.5rem !important;
    }

    .fs-2 {
        font-size: 1.35rem !important;
    }

    .fs-3 {
        font-size: 1.25rem !important;
    }

    .fs-4 {
        font-size: 1.15rem !important;
    }

    .fs-5 {
        font-size: 1.075rem !important;
    }

    .fs-6 {
        font-size: 1rem !important;
    }

    .fs-7 {
        font-size: 0.95rem !important;
    }

    .fs-8 {
        font-size: 0.85rem !important;
    }
}

/* Alternatif Font Weight Sınıfları */
.fw-1 {
    font-weight: 100 !important;
}

.fw-2 {
    font-weight: 200 !important;
}

.fw-3 {
    font-weight: 300 !important;
}

.fw-4 {
    font-weight: 400 !important;
}

.fw-5 {
    font-weight: 500 !important;
}

.fw-6 {
    font-weight: 600 !important;
}

.fw-7 {
    font-weight: 700 !important;
}

.fw-8 {
    font-weight: 800 !important;
}

.fw-9 {
    font-weight: 900 !important;
}

/* Font Family Variables */
:root {
    --bs-font-sans-serif: "Inter", Helvetica, "sans-serif";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Helper Classes */
.text-muted {
    color: #A1A5B7 !important;
}

.text-gray-400 {
    color: #B5B5C3 !important;
}

.text-gray-600 {
    color: #7E8299 !important;
}

.text-gray-800 {
    color: #3F4254 !important;
}

.text-gray-900 {
    color: #181C32 !important;
}

/* Scroll Stili */
.project-scroll {
  max-height: calc(100vh - 350px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.2) transparent;
}

.project-scroll::-webkit-scrollbar {
  width: 4px;
}

.project-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,.2);
  border-radius: 4px;
}

.project-scroll:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,.3);
}

/* Kart Başlık Renkleri */
.bg-danger {
  background-color: #F1416C !important;
}

.bg-primary {
  background-color: #7239EA !important;
}

.bg-warning {
  background-color: #FFC700 !important;
}

.bg-success {
  background-color: #17C964 !important;
}

/* Progress Bar Stili */
.progress {
  background-color: #F9F9F9;
  border-radius: 0.475rem;
}

/* Symbol Stili */
.symbol {
  display: inline-block;
  position: relative;
  border-radius: 0.475rem;
}

.symbol-label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.475rem;
}

/* Hover Efekti */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.08);
}

.progress-bar-custom {
  height: 5px;
}

/* 0-25 arası - kırmızı */
.progress-bar-danger {
  background-color: #F1416C !important;
}

/* 25-50 arası - mavi */
.progress-bar-primary {
  background-color: #3699FF !important;
}

/* 50-75 arası - turuncu */
.progress-bar-warning {
  background-color: #FFA800 !important;
}

/* 75-100 arası - sarı */
.progress-bar-yellow {
  background-color: #FFC700 !important;
}

/* 100 - yeşil */
.progress-bar-success {
  background-color: #50CD89 !important;
}

/* Yuvarlak avatar için */
.symbol.symbol-circle {
  border-radius: 50%;
}

.symbol.symbol-circle .symbol-label {
  border-radius: 50%;
}

/* Proje kartı hover efekti */
.project-card {
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.08);
}

.circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin: 0 auto;
}

.table {
  margin: 1rem 0;
}

.table td {
  padding: 0.5rem;
  vertical-align: middle;
  width: 20%;
}

.table td:first-child {
  font-weight: 500;
}

@media (max-width: 576px) {
  .circle {
      width: 30px;
      height: 30px;
      font-size: 12px;
  }

  .table td {
      font-size: 12px;
      padding: 0.25rem;
  }
}
