@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

/* start: Globals */
:root {
    --white: #fff;
    --black: #000;
    --black-950: #1A1A1A;
    --black-900: #1C1C1C;
    --black-800: #252525;
    --black-700: #333333;
    --black-600: #636363;
    --black-500: #8C8C8C;
    --black-400: #AFAFAF;
    --black-300: #CCCCCC;
    --black-200: #E2E2E2;
    --black-100: #F2F2F2;
    --black-50: #FCFCFC;
    --neutral-50: #F1F1F1;
    --neutral-100: #D2D2D2;
    --neutral-200: #BCBCBC;
    --neutral-300: #9D9D9D;
    --neutral-400: #4B4B4B;
    --neutral-500: #2F2F2F;
    --danger: #E50D0D;
    --warning: #FBBC05;
    --success: #50AC0E;
    --primary-100: #C0E6FF;
    --primary-200: #81CCFF;
    --primary-300: #185BC8;
    --primary-400: #012D74;
    --primary-500: #013051;
    --sidebar: #185BC8;
  --blue-900-1: #0E2087;
  --blue-900-2: #0052CC;
  --blue-700: #0065FF;
  --blue-600: #2684FF;
  --blue-500: #B3D4FF;
  --blue-400: #DEEBFF;
  --red-400: #A82200;
  --red-300: #F03000;
  --red-100: #FFBDAD;
  --red-0: #FFEBE6;
  --purple-100: #e5d9ff;
  --purple-200: #C0B6F2;
  --purple-300: #8353E2;
  --purple-400: #6554C0;
  --purple-500: #403294;
  --orange-100: #FFF1C2;
  --orange-200: #FFE380;
  --orange-300: #FFC400;
  --orange-400: #FFAB00;
  --orange-500: #FF8B00;
    --text-xxs: 10px;
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --text-6xl:60px;
    --rounded-sm: 2px;
    --rounded: 4px;
    --rounded-md: 6px;
    --rounded-lg: 8px;
    --rounded-xl: 12px;
    --rounded-full: 999px;
    --duration-150: 150ms;
}
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
}
input,
textarea,
select,
button {
    font-family: inherit;
}
/* end: Globals */

/* start: Button */
.btn {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: var(--text-base);
    font-weight: 500;
    border-radius: var(--rounded-lg);
}
.btn-icon {
    padding: 0;
    width: 36px;
    border-radius: var(--rounded-full);
}
.btn-block {
    width: 100%;
}
.btn-light {
    background-color: transparent;
    color: var(--black);
}
.dropdown.active > .btn-light,
.btn-light:hover {
    background-color: var(--neutral-100);
    color: var(--white);
}
.btn-primary {
    background-color: var(--primary-500);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--primary-600);
}
.btn-mail,  .btn-sms{
    width: auto;
    height: 40px;
    padding: 0 16px;
}
.btn-mail{
    background-color: var(--purple-100);
    border: 1px solid var(--purple-300);
    color: var(--purple-300);
}
.btn-mail a{
    color: var(--purple-300);
}
.btn-mail:hover, .btn-mail:hover a{
    background-color: var(--purple-300);
    border: 1px solid var(--purple-300);
    color: var(--white);
}
.btn-mail a:hover{
    color: var(--white);
}
.btn-sms{
    background-color: var(--orange-100);
    border: 1px solid var(--orange-400);
    color: var(--orange-400);
}
.btn-sms a{
    color: var(--orange-400);
}
.btn-sms:hover,.btn-sms:hover a{
    background-color: var(--orange-400);
    border: 1px solid var(--orange-400);
    color: var(--white);
}
.btn-sms a:hover{
    color: var(--white);
}
/* end: Button */

/* start: Form */
.form-control {
    height: 40px;
    border-radius: var(--rounded-md);
    border: 1px solid var(--neutral-200);
    font-size: var(--text-base);
    outline: none;
    transition-property: box-shadow, border-color;
    transition-duration: var(--duration-150);
    padding: 0 16px;
    width: 100%;
}
.form-control:focus {
    box-shadow: 0 0 0 1px var(--primary-500);
    border-color: var(--primary-500);
}
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(var(--bs-border-width)* -1);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.sidebar-menu-item .tooltip {
    display: inline-block;
    position: absolute;
    background-color: var(--sidebar) !important;
    color: white;
    padding: 0 12px 6px 12px;
    border-radius: 12px;
    margin-top: 0px;
    left: 110%;
    opacity: 0;
    visibility: hidden;
    font-size: 12px;
    font-weight: 600;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

.sidebar-menu-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu-item .tooltip:before {
    content: '';
    position: absolute;
    left: -14px; /* Oku daha doğru konumlandır */
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px; /* Okun boyutu */
    border-style: solid;
    border-color: transparent var(--sidebar) transparent transparent;
}
.tooltip-inner{
    background-color: transparent;
    padding: 0;
}


/* end: Form */

/* start: Dropdown */
.dropdown {
    position: relative;
}
.dropdown-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--neutral-100);
}
.dropdown.active .dropdown-menu-wrapper {
    display: block;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050; /* Üstte görünecek şekilde bir z-index ayarla */
    background-color: #fff; /* Beyaz arka plan */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    max-height: 200px; /* Maksimum yükseklik */
    overflow-y: auto; /* Kaydırma için */
    min-width: 100px; /* Minimum genişlik */
}
.dropdown-menu {
    padding: 8px 0;
    list-style-type: none;
    width: 200px;
}
.dropdown-menu-item-link {
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    text-decoration: none;
    color: var(--neutral-700);
}
.dropdown-menu-item-link:hover {
    background-color: var(--neutral-100);
    color: var(--primary-100);

}
.dropdown-menu-item-link-image {
    height: 20px;
    flex-shrink: 0;
    margin-right: 8px;
}
.dropdown-menu-item-link-text {
    font-size: var(--text-base);
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-width: 0;
    width: 100%;
}
.dropdown-menu-item-link-icon {
    font-size: var(--text-lg);
    flex-shrink: 0;
    margin-right: 8px;
}
.dropdown-menu.filter {
    max-width: 450px;
    min-width: 400px;
    max-height: 800px;
    border-radius: 8px;
    padding: 10px;
}
.dropdown-menu.column {
    max-width: 450px;

    max-height: 600px;
    border-radius: 8px;
    padding: 10px;
}
.sort-asc, .sort-desc, .all-select {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}
.filter-input, .condition-select {
    height: 32px;
}

    .active-filter-icon {
        color: var(--list-blue);
      }
.dropdown-content {
    width: 300px;
}
.dropdown-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    border-bottom: 1px solid var(--neutral-200);
    padding: 0 12px;
}
.dropdown-content-title {
    font-weight: 600;
    font-size: var(--text-base);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
    margin-right: 8px;
}
.dropdown-content-header > .badge {
    flex-shrink: 0;
}
.dropdown-content-bottom {
    padding: 12px;
}

.dropdown-cart-wrapper {
    max-height: 300px;
    overflow-y: auto;
    border-bottom: 1px solid var(--neutral-200);
}
.dropdown-cart-item {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 12px;
    border-bottom: 1px solid var(--neutral-100);
}
.dropdown-cart-item:last-child {
    border-bottom: none;
}
.dropdown-cart-item-image {
    width: 36px;
    height: 36px;
    border-radius: var(--rounded-lg);
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 8px;
}
.dropdown-cart-item-body {
    min-width: 0;
    margin-right: 8px;
}
.dropdown-cart-item-title {
    text-decoration: none;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    margin-bottom: 2px;
}
.dropdown-cart-item-title:hover {
    color: var(--primary-500);
}
.dropdown-cart-item-description {
    font-size: var(--text-xs);
    color: var(--neutral-500);
}
.dropdown-cart-item-price {
    font-size: var(--text-base);
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 12px;
}
.dropdown-cart-item-remove {
    flex-shrink: 0;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--neutral-500);
    font-size: var(--text-base);
}
.dropdown-cart-item-remove:hover {
    color: var(--danger-500);
}
.dropdown-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.dropdown-cart-total-text {
    font-size: var(--text-base);
    font-weight: 500;
}
.dropdown-cart-total-amount {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-500);
}

.dropdown-notification-wrapper {
    max-height: 300px;
    overflow-y: auto;
}
.dropdown-notification-item {
    display: flex;
    align-items: center;
    padding: 0 16px;
    text-decoration: none;
    color: var(--black);
    height: 56px;
}
.dropdown-notification-item:hover {
    background-color: var(--neutral-100);
}
.dropdown-notification-item-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
    font-size: var(--text-lg);
}
.dropdown-notification-item-icon.primary-soft {
    background-color: var(--primary-100);
    color: var(--primary-500);
}
.dropdown-notification-item-icon.danger-soft {
    background-color: var(--danger-100);
    color: var(--danger-500);
}
.dropdown-notification-item-icon.success-soft {
    background-color: var(--success-100);
    color: var(--success-500);
}
.dropdown-notification-item-title {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: var(--text-base);
    font-weight: 500;
    margin-right: 8px;
    min-width: 0;
    width: 100%;
}
.dropdown-notification-item-time {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    flex-shrink: 0;
    width: 40px;
}
/* end: Dropdown */

/* start: Badge */
.badge {
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-radius: var(--rounded-full);
    font-size: var(--text-xs);
    font-weight: 600;
}
.badge-primary-soft {
    background-color: var(--primary-100);
    color: var(--primary-500);
    white-space: nowrap;
}
/* end: Badge */

/* start: Sidebar */
.sidebar {
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    width: 214px;
    height: 100%;
    background-color: var(--black-100);
    display: flex;
    flex-direction: column;
    z-index: 40;
    transition-property: width;
    transition-duration: var(--duration-150);
    overflow-x: hidden;
}
body.sidebar-collapsed .sidebar {
    width: 64px;
}

.sidebar-brand {
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    text-decoration: none;
    color: var(--black);
    flex-shrink: 0;
}
.sidebar-brand-image {
    width: 72px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    margin: 36px;
}
.sidebar-brand-text {
    font-weight: 700;
    font-size: var(--text-lg);
    letter-spacing: 1px;
    min-width: 0;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.sidebar-menu-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 24px;
  }

  .sidebar-menu.alt-menu {
    margin-top: auto;
    margin-bottom: 32px !important;
  }
.sidebar-menu {
    list-style-type: none;
}
.sidebar-menu:last-child {
    margin-bottom: 0;
}
ol, ul {
    padding-left: 0 ;
}
.sidebar-menu-title {
    font-size: var(--text-xs);
    color: var(--neutral-500);
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0 16px 8px;
}
body.sidebar-collapsed .sidebar-menu-title-expanded,
.sidebar-menu-title-collapsed {
    display: none;
}
body.sidebar-collapsed .sidebar-menu-title-collapsed {
    display: block;
    text-align: center;
}
.sidebar-menu-item-link {
    text-decoration: none;
    color: var(--black-950);
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
}
.sidebar-menu-item.active > .sidebar-menu-item-link {
    background-color: var(--blue-400);
    color: var(--blue-900-2);
  }

  .sidebar-menu-item.active > .sidebar-menu-item-link .material-symbols-rounded {
    color: #1c50b7; /* İkon rengi (koyu mavi) */
  }


body.sidebar-collapsed .sidebar-menu-item.active > .sidebar-menu-item-link {
    color: var(--primary-300);
}
.sidebar-menu-item.active > .sidebar-menu-item-link,
body.sidebar-collapsed .sidebar-menu-item > .sidebar-menu-item-link:hover,
.sidebar-menu-item:hover > .sidebar-menu-item-link,
body.sidebar-collapsed  > .sidebar-menu-item-link {
    color: var(--blue-900-2);
    background-color: var(--blue-400);
}
.sidebar-submenu-item-link:hover , .sidebar-menu-item-link:hover{
    color: var(--blue-900-2);
    background-color: var(--black-200) !important;
}
.sidebar-submenu-item-link-text:hover,.sidebar-menu-item-link:hover {
    color: var(--blue-900-2);

}

.sidebar-menu-item-link-icon {
    flex-shrink: 0;
    margin: 0 8px 0 1px;
    margin-top: 4px;
    font-size: var(--text-2xl);
    transition-property: margin;
    transition-duration: var(--duration-150);
}
body.sidebar-collapsed .sidebar-menu-item-link-icon {
    margin: 0 auto;
}
.sidebar-menu-item-link-text {
    font-size: var(--text-base);
    font-weight: 300;
    min-width: 0;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
body.sidebar-collapsed .sidebar-menu-item-link-text {
    display: none;
}
.sidebar-menu-item-link-arrow {
    flex-shrink: 0;
}
body.sidebar-collapsed .sidebar-menu-item-link-arrow {
    display: none;
}
.sidebar-menu-item.active > .sidebar-menu-item-link > .sidebar-menu-item-link-arrow {
    transform: rotateZ(90deg);
}
.sidebar-submenu {
    display: none;

    list-style-type: none;
}
.sidebar-menu-item > .sidebar-submenu {
   /* margin: 0 24px;*/
   background-color: var(--blue-400);
   /* border-radius: 8px;*/
}
body.sidebar-collapsed .sidebar-menu-item > .sidebar-submenu {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    margin-left: 0;
    border: 1px solid var(--neutral-200);
    padding: 16px 0;
    width: 200px;
}
body.sidebar-collapsed .sidebar-menu-item:hover > .sidebar-submenu {
    display: block;
}
body.sidebar-collapsed img {
    width: 42px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0px;
}

.sidebar-submenu-item.active > .sidebar-submenu,
.sidebar-menu-item.active > .sidebar-submenu {
    display: block;
}
.sidebar-submenu-item-link {
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: var(--neutral-700);
    text-decoration: none;
}
.sidebar-submenu-item-link:hover {
    color: var(--primary-500);
}
.sidebar-submenu-item-link-text {
    font-size: var(--text-base);
    min-width: 0;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.sidebar-submenu-item-link-arrow {
    flex-shrink: 0;
}
.sidebar-submenu-item.active > .sidebar-submenu-item-link > .sidebar-submenu-item-link-arrow {
    transform: rotateZ(90deg);
}
.sidebar-overlay {
    display: none;
}
.sidebar-menu-item.active > .sidebar-menu-item-link,
.sidebar-submenu-item.active > .sidebar-submenu-item-link {
    background-color: #DEEBFF;
    border-left: 4px solid #0052CC;
    color: #0052CC;
    font-weight: bold;
}

/* end: Sidebar */

/* start: Main */
.genel {
    width: 1440px;
    height: 1024px;
    background-color: #fff;
    margin: auto;
    border: 1px solid #ddd;
}
.main {
    margin-left: 214px;
    transition-property: margin-left;
    transition-duration: var(--duration-150);
}
body.sidebar-collapsed .main {
    margin-left: 64px;
}
.topbar {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid var(--primary-300);
    position: relative;
}
.topbar-sidebar-toggle {
    flex-shrink: 0;
}
.topbar-search-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 300px;
    min-width: 0;
    margin-left: 16px;
    margin-right: 16px;
}
#tableSearch {
    border-color:var(--blue-700);
}
.topbar-search-back {
    display: none;
    margin-right: 8px;
}
.topbar-search {
    width: 100%;
    min-width: 0;
    position: relative;
}
.topbar-search > .form-control {
    padding-left: 36px;
}
.topbar-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-500);
    font-size: var(--text-lg);
    pointer-events: none;
}
.topbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.topbar-right > * {
    margin-right: 12px;
}
.topbar-right > :last-child {
    margin-right: 0;
}
.topbar-right-item-image {
    height: 18px;
}
.topbar-right-item {
    position: relative;
}
.topbar-right-item-total {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background-color: var(--danger-500);
    color: var(--white);
    font-size: var(--text-xxs);
    font-weight: 600;
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar-right-item-user-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--rounded-full);
}
.topbar-right-item-search {
    display: none;
}
.mobile-only {
    display: none;
}
/* end: Main */

/* start: Content */
.content {
    padding: 16px;
}
.content-title {
    font-size: var(--text-xl);
    line-height: 1.3;
    font-weight: 500;
    color: var(--primary-300);
    margin-left: 16px;
}
/* end: Content */

.active-filter-icon {
    color: #0d6efd;
  }
  .btn-add, .btn-submit, .btn-upload{
    width: auto;
    height: 40px;
    padding: 0 16px;
    background-color: #0052CCAD;
    color: var(--white);
  }
  .btn-login, .btn-prev, .btn-next, .btn-complete{
    width: auto;
    height: 40px;
    padding: 0 16px;
    background-color: var(--blue-900-2);
    color: var(--white);
  }
  .btn-login:hover, .btn-prev:hover, .btn-next:hover, .btn-complete:hover{
    color: var(--white);
    background-color: var(--primary-400);
  }
 .btn-test{
    width: auto;
    height: 48px;
    padding: 0 16px;
    background-color: var(--blue-900-2);
    color: var(--white);
  }
  .btn-add:hover , .btn-submit:hover, .btn-upload:hover, .btn-test:hover{
    background-color: var(--primary-300);
    color: var(--white);
  }
  .btn-outline-button {
    width: auto;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #4069EA;
    background-color:#EFFDFF;
    color:#4069EA ;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-blue {
    width: auto;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #0052CC;
    color:#0052CC ;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-gray {
    width: auto;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--black-600);
    background-color:var(--white);
    color:var(--black-950) ;
    display: flex;
    align-items: center;
    gap: 8px;
}
  .btn-outline-button:hover, .btn-outline-button.show{
    border: 1px solid var(--primary-300);
    color: var(--white);
    background-color: #4069EA;
  }
  .btn-danger-outline{
    border: 1px solid var(--danger);
    color: var(--danger);
    height: 40px;
  }
  .btn-danger-outline:hover{
    background-color: var(--danger);
    color: var(--white);
  }
  .btn-delete{
    background-color: var(--red-0);
    color: var(--red-300);
    height: 40px;
  }
  .btn-delete:hover{
    background-color: var(--danger);
    color: var(--white);
  }
  button a{
    text-decoration: none;
    color: var(--white);
  }
  .show-btn{
    color: var(--primary-300);
    background-color: var(--neutral-50);
    padding: 4px;
    border-radius: 8px;
  }
  .edit-btn{
    color: var(--success);
    background-color: var(--neutral-50);
    padding: 4px;
    border-radius: 8px;
  }
  .delete-btn{
    color: var(--danger);
    background-color: var(--neutral-50);
    padding: 4px;
    border-radius: 8px;
  }
  .download-btn{
    color: var(--warning);
    background-color: var(--neutral-50);
    padding: 4px;
    border-radius: 8px;
  }
  .delete-icon {
    color: var(--danger);
    font-size: var(--text-6xl);
  }
  .cancel-text{
    font-size: var(--text-sm);
    color: var(--neutral-200);
  }
  .btn-outline-cancel, .lengthMenu{
    border: 1px solid var(--neutral-100);
    padding: 0 16px;
    height: 40px;
    width: auto;
  }
  .lengthMenu{
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
  }

  .btn-outline-cancel:hover, .lengthMenu:hover{
    border: 1px solid var(--neutral-100);
    background-color: var(--neutral-200);
    color: var(--white);
    height: 40px;
    width: auto;
  }
  .btn-apply{
    border: 1px solid var(--blue-900-2);
    height: 40px;
    width: auto;
    border-radius: 4px;
    color: var(--blue-900-2);
    font-size: 12px;
  }
  .btn-clear-filter{
    border: 1px solid var(--danger);
    height: 40px;
    width: auto;
    border-radius: 4px;
    color: var(--danger);
    font-size: 12px;
  }

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

  .btn-apply:hover {
    background-color: var(--blue-900-2);
    color: white;
  }
  .checkbox{
    display: flex;
    width: 24px !important;
    height: 24px !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 0 !important;
  }
  .dataTables_wrapper {
    overflow-x: auto;
}
.dataTables_wrapper .dataTables_scrollHeadInner {
    width: 100% !important;
}

.dataTables_wrapper .dataTables_scrollHead table {
    width: 100% !important;
}
.table-custom{
    overflow-y: auto !important;
}
.moz-available{
    width: -moz-available;
}
  .dataTables-info {
    text-align: left;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
    margin-top: 16px;
}
.pagination.justify-content-end.mb-0{
    display: none !important;
}
.dataTables-pagination {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
}
.paginate_button{
    background-color: none !important;
    background:none !important;
    border: none !important;
    color: var(--primary-300) !important;
    font-weight: bold;
}
.custom-thead tr th span{
    font-size: 1rem !important;
  white-space: nowrap;
  text-align: start;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue-900-2);
  line-height: 15.73px;
}
.dataTables-pagination a{
    text-decoration: none;
    color: var(--neutral-400);
    margin-right: 8px;
}
.dataTables-pagination a.current{
color: var(--primary-300);
font-weight: bold;
}
.dataTables-length {
    text-align: right;
    margin-bottom: 16px;
}
.dataTables-length select{
    border: 1px solid var(--neutral-100);
    border-radius: 4px;
}
  table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: none
}


  table .thead th,.filter-column-title{
    font-size: 1rem;
    white-space: nowrap;
    text-align: start;
    vertical-align: middle;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--blue-900-2);
    padding: 12px 6px;
    line-height: 15.73px;
  }
  .dataTables_scrollHead th, .thead-color th{
    white-space: nowrap;
    text-align: start;
    vertical-align: middle;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--primary-400);
    background-color: var(--black-100) ;
    line-height: 15.73px;
  }
  tbody  tr td{
    padding: 16px 0 !important;
  }

  .table-bordered>:not(caption)>*>* , .table-bordered>:not(caption)>*{
    border: none;
}
.table-bordered tr {
    border-bottom: 1px dashed var(--neutral-200);
}
.add-border{
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    padding: 16px 0;
}
.form-border{
    padding: 16px 32px;
}
.title-border{
    border-bottom: 1px dashed var(--neutral-100);
    padding: 0 0 0 16px;
}.title-border {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px; /* Sol ve sağ boşluk */
}
.btn-add-recipient{
    font-size: 16px;
    border-radius: 8px;
    background-color: var(--primary-300);
    color: var(--white);
  }
  .btn-add-recipient:hover, .btn-save-note:hover{
    color: var(--white);
    background-color: var(--primary-500);
  }
.add-title {
    flex-grow: 1; /* Başlık ortalanırken genişlemeyi sağlar */
    text-align: center; /* Metni ortalar */
    margin: 0; /* H2 varsayılan marjinlerini kaldırır */
}

.btn-close {
    margin-left: auto; /* Butonu sağa iter */
}

.add-title{
    color: var(--primary-300);
    font-weight: 500;
    font-style: var(--text-2xl);
}
.form-label{
    color: var(--neutral-500);
    font-weight: 600;
    font-style: var(--text-xl);
}
form .form-control, form .form-select , .form .form-control{
    border: 1px solid var(--neutral-200);
   height: 48px;
   padding: 8px 16px;
   border-radius: 8px;
}
/*
textarea.form-control {
    height: 120px !important;
}*/
.submit-btn {
    position:relative;
    bottom: 0;
    background-color: white;
    padding: 10px;
    text-align: right;
  }
  .main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .content {
    flex: 1;
  }
  .form-container {
    max-width: 1700px;
    margin: 0 auto;
  }
  .notification_success {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--success);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: none;
}
.notification_danger {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--danger);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: none;
}
.general-info-card .card{
    position: sticky;
    top: 40px;
    align-self: start;
    border: 1px solid var(--blue-900-2);
}
.card-sube-title {
    color: var(--primary-300);
    font-size: var(--text-2xl);
    text-align: center;
}
.settings-title {
    color: var(--primary-300);
    font-size: var(--text-2xl);
    text-align: start;
}
.card-title  {
    color: var(--primary-300);
    font-size: var(--text-xl);
    text-align: start;
}
td.status-text-warning {
    color: var(--warning);
    font-weight: 400;
    font-style: var(--text-sm);
}
td.status-text-danger {
    color: var(--danger);
    font-weight: 400;
    font-style: var(--text-sm);
}
td.status-text-success {
    color: var(--success);
    font-weight: 400;
    font-style: var(--text-sm);
}
/*start: chart*/
#chartdiv, #chartdiv2, #chartdiv3 {
    width: 100%;
    height: 300px;
}
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}
.chart-legend-title {
    margin-top: 1.9rem !important;
}
.circle-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}
.chart-canvas {
    max-width: 258px !important;
    max-height: 258px !important;
}
.chart-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid  var(--neutral-200);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    min-width: 250px;
    margin: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }
  #projectChart {
    width: 100%;
    height: 300px;
}

.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legend {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 14px;
}

.legend span {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.legend .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.dot.total {
    background-color: #00274d;
}

.dot.ongoing {
    background-color: #3366cc;
}

.dot.completed {
    background-color: #70c1ff;
}

.dashboard-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--neutral-200);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.chart-card .chart-title, .dashboard-card .chart-title{
    color: var(--neutral-300);
    font-weight: 600;
    font-size: var(--text-xl);
    text-align: start !important;
    align-self: flex-start;
}
.small-title{
    font-size: var(--text-sm);
    color: var(--primary-300);
    text-align: start !important;
    align-self: flex-start;
}
.back-title{
    font-size: var(--text-sm);
    color: var(--neutral-300);
    line-height: 15.73px;
    font-size: 400;
    text-align: start;
}
  .chart-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--primary-300);
  }

  .chart-legend {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    margin-top: 10px;
  }
  .chart-legend span {
    display: inline-block;
    margin-right: 12px;
  }
  .circle-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
  }

canvas {
position: relative;
z-index: 0;

}

.chart-legend {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.chart-legend span {
    display: inline-block;
    margin-right: 12px;
}

.circle-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
}

.legend-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.chart-container {
    text-align: center;
    width: 200px;
    margin: auto;
    position: relative;
}

.chart-title {
    color: #7a7a7a;
    font-weight: bold;
    font-size: 16px;
}

.chart-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 20px;
    color: #2667EB;
}
.chart-subtitle {
    display: block;
    color: #4285f4;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-align: start;
    display: flex;
}

.chart-data-text-aktif {
    margin-top: 10px;
    font-size: 11px;
    color: #B3D4FF;
}

.chart-data-text-pasif {
    margin-top: 10px;
    font-size: 11px;
    color: #185BC8;
}

.chart-center-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #5f9cec;
    margin-top: 8px;
}
/*end: chart*/
.modal-footer{
    border: none;
}
/*start: table*/
.sube-bilgileri-divider {

    border-bottom: 1px dashed var(--neutral-100);
    margin-bottom: 0.5rem;
}

.card-bilgi-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 1px;
    padding: 0.25rem 0;
}

.card-bilgi-item .icon {
    font-size: 1.5rem;
    color: var(--primary-300);
    margin-right: 0.5rem;
    display: inline-block;
    line-height: 1;
}

.card-bilgi-item .label {
    font-weight: 400;
    font-size: var(--text-base);
    color: var(--neutral-500);
    margin-right: 0.25rem;
}

.card-bilgi-item .value {
    font-weight: 400;
    margin-left: auto;
    color: var(--neutral-400);
    font-size: var(--text-sm);

}

.calendar-icon {
    position: absolute;
    right: 10px;
    top: 10px;
}

/*end: table*/
/*belge yükle*/
.file-upload-container {
    text-align: start;
    margin-top: 16px;
}

.file-upload-title {
    font-size: 23px;
    color: var(--primary-300);
    margin-bottom: -15px;
    font-weight: 500;
    line-height: 27.84px
}

.file-upload-box {
    border: 1px solid var(--neutral-200);
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
    text-align: center;
    width: 100%;
    background-color: var(--white);
}

.file-icon {
    font-size: 50px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.file-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--neutral-400);
    margin-bottom: 10px;
}

.file-input {
    display: none;
}

.file-info {
    margin-top: 10px;
    display: flex;
    font-size: var(--text-xs);
    color: var(--neutral-500);
    width: auto;
}
.file-actions {
 display: flex;
justify-content: space-between;
gap: 10px;
 }


.detail-title{
    color: var(--primary-300);
    font-size: var(--text-2xl);
    font-weight: 500;
    line-height: 27.84px;
}

.nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    border: 1px solid #ddd;
    background-color: white;
    border-left: 1px solid white;
    border-right: 1px solid white;
border-radius: 0;
    border-top: none;
    scrollbar-width: none;
    box-shadow: 0px 4px 8px 0px rgba(10, 10, 10, 0.1);
    margin-bottom: 36px;
}

.tab-nav-wrapper {
  position: relative;
}

.tab-arrow-left {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-arrow-right {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 10;
  border-left:none;
  border-radius: 0;
  border-top-right-radius: 10%;
  border-bottom-right-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.left-arrow {
  left: 0;
  margin-left: 15px;
}


.right-arrow {
  right: 0;
  margin-right: 5px;
}

.tab-overflow {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  margin: 0 50px;
}

.nav-tabs .nav-link {
  white-space: nowrap;
}

.nav-tabs::-webkit-scrollbar {
    display: none;
}

.between-tabs li{
    width: 33%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.twin-tabs li{
    width: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.nav-tabs .nav-item {
    flex: 0 0 auto;
}

.nav-tabs .nav-link {
    white-space: nowrap;
    padding: 15px 15px;
    border: 1px solid transparent;
    border-radius: 0;
    border: none;
    transition: color 0.3s ease;
    width: 100%;
    color: var(--neutral-200);
    font-size: var(--text-lg);
    font-weight: 400;
    line-height: 22.99px;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    border-bottom: 3px solid #0d6efd;
}

.nav-tabs::-webkit-scrollbar {
    height: 8px;
}

.nav-tabs::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.nav-tabs::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #dee2e6;
    left: 25px;
    margin-left: -2px;
}
.timeline-item {
    position: relative;
    margin: 0 0 20px;
}
.timeline-item::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    line-height: 24px;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item .timeline-content {
    margin-left: 60px;
    padding: 10px 15px;
}
.timeline-content p {
    color: var(#2f2f2f);
    font-weight: 500;
    font-size: var(--text-lg);
}
.timeline-item .timeline-date {
    font-size: 12px;
    color: #6c757d;
}
.timeline-item[data-number="1"]::before {
    background-color: var(--warning);
}

.timeline-item[data-number="2"]::before {
    background-color: var(--danger);
}

.timeline-item[data-number="3"]::before {
    background-color: var(--success);
}

.timeline-item[data-number="4"]::before {
    background-color: var(--primary-200);
}

.timeline-content {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    color: #333;
}

.login-image {
    background-image: url('/assets/img/login-bg.svg');
    background-size: cover;
    background-position: center;
    background-color: var(--primary-300);
  }

  .login-form {
    max-width: 400px;
    padding: 20px;
    border-radius: 8px;
  }

  .module-title {
    color: var(--blue-900-2);
    font-size: 19px;
    font-weight: 600;
    line-height: 22.99px;
    align-items: start;
  }
  .login-title {
    color: var(--black-950);
    font-size: 23px;
    font-weight: 500;
    line-height: 33.89px;
    align-items: start;
  }

  .forgot-title {
    color: var(--sidebar-dark);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    align-items: end;
  }
  .forgot-title:hover{
    color: var(--blue-700);
    cursor: pointer;
  }

  .login-subtitle {
    color: var(--neutral-400);
    font-size: 19px;
    font-weight: 400;
    line-height: 22.99px;
    align-items: center;
  }

  .password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .repeat-title{
    font-size: 11px;
    color: var(--neutral-400);
    text-align: start;
  }
  .repeat-title span{
    color: var(--primary-300);
  }

  .otp-form {
  max-width: 500px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.otp-inputs {
  display: flex;
  align-items: center;
  gap: 44px;
  align-self: center;
}

.otp-input {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin: 24px 0px;
}

.otp-input:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 5px var(--Blue-300);
}

.otp-input:focus {
  border-color: #007bff;
  outline: none;
}

#map,
#map_gayrimenkul {
    border: 2px solid #dc5f13;
    border-radius: 8px;
    width: 100%;
    height: 600px;
}

/* Genel popup tasarımı */
.leaflet-popup-content {
    padding: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.popup-content .card-body {
    padding: 0;
}

.popup-content .card {
    border: none;
}

/* Başlık */
.popup-content h3 {
    margin: 0 0 10px 0;
    color: #1976d2;
    font-size: 18px;
}

/* Liste stili */
.popup-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.popup-content ul li {
    display: flex;
    align-items: center;
}

.popup-content ul li span {
    font-weight: bold;
    margin-right: 5px;
}

/* Buton stili */
.popup-content button,
.city-location {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
}

.popup-content button:hover,
.city-location:hover {
    background-color: #0d47a1;
}

.leaflet-popup-content-wrapper {
    max-width: 600px;
    border-radius: 10px;
}

.custom-marker {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: var(--primary-300);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.marker-icon {
    color: white;
    font-size: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    position: relative;
}

#clearFilters {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    display: none;
}

#clearFilters:hover {
    color: #333;
}

.filter-container.open #filterDropdown {
    display: block;
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}



.btn-clear.d-none {
    display: none !important;
}

#clearAllFilters {
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

#clearAllFilters .material-symbols-rounded {
    font-size: 18px;
    margin-right: 5px;
}
.settings-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    float: left;
}

.settings-container h3 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}
input[type=password]::-webkit-textfield-decoration-container {
display: none !important;
}
input[type=password]::-ms-clear,
input[type=password]::-ms-reveal {
display: none !important;
}

.recipient-input {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--neutral-200);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
  }
  .recipient-badge {
    display: inline-block;
    background-color: #0065ff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;

  }

  .recipient-badge button {
    background: none;
    border: none;
    color: white;
    margin-left: 5px;
  }
  .recipient-count{
    color: var(--sidebar-dark);
    font-size: 12px;
    font-weight: 600;
  }
  .email-container, .sms-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.recipients {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.recipient-tag {
    background: #e7f3ff;
    color: #007bff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}


.list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px dashed var(--logo-blue);
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #fff;
}

.list-group-item .left-section {
    max-width: 600px;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 100px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.list-group-item .left-section span {
    font-weight: 400;
    font-size: 16px;
    color: var(--sidebar-dark);
    line-height: 24px;
}

.list-group-item .form-select {
    flex-grow: 1;
    max-width: 600px;
    min-width: 250px;
    margin: 0 15px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.list-group-item .status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-group-item .status-icon.success {
    background-color: #28a745;
}

.list-group-item .status-icon.warning {
    background-color: #ffc107;
}

.list-group-item .status-icon.default {
    background-color: #dcdcdc;
}
.file-logo {
    width: 24px;
    height: 24px;
}


.btn-add-file {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    border: 1px solid var(--green-300);
    color: var(--green-300);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-add-file:hover {
    background-color: #00b248;
    color: white;
}
.file-upload-container {
    border: 2px solid var(--neutral-100);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
}
.image-upload-container {
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.file-upload-box {
    border: 2px dashed var(--neutral-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
}
.image-upload-box {
    border: 2px dashed var(--neutral-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: pointer;
}
.upload-image-icon{
    font-size: 36px;
    }
.file-icon {
    color: #185BC8;
    font-size: 32px;
    margin-bottom: 10px;
}

.file-label {
    font-size: 12px;
    text-align: center;
    color: var(--sidebar-dark);
}

.file-label span#triggerFileUpload {
    color: #185BC8;
    font-weight: bold;
    cursor: pointer;
}

.file-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-info {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.table-responsive {
    overflow-x: auto;
          white-space: nowrap;
}
.table thead td {
    padding: 0 !important;
    margin: 0 !important;
  }

  .permissions-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .category {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .category-header {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 5px;
  }

  .sub-permissions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 25px;
  }

  .sub-permission label {
    display: flex;
    align-items: center;
    gap: 5px;
  }

@media (max-width: 768px) {
    .login-image {
      display: none;
    }
    .otp-col{
      justify-content: end;
    }
  }

  @media (max-width: 768px) {
    .login-image {
      display: none;
    }
  }
/* start: Breakpoints */
/* (1280px ve üstü) */
@media (min-width: 1280px) {


    .table th, .table td {
        font-size: 12px;
        padding: 10px 8px !important ;
    }
}

/* Büyük ekranlar (1440px ve üstü) */
@media (min-width: 1440px) {


    .table th, .table td {
        font-size: 12px;
        padding: 12px 20px;
    }
    table .thead th{
        font-size: var(--text-md);
    }
}

/*(1920px ve üstü) */
@media (min-width: 1920px) {


    .table th, .table td {
        font-size: 14px;
        padding: 15px 25px;
    }
    .table {
        max-width: 100%;
        margin: 0 auto;
    }
}
/* Küçük ekranlar (576px ve altı) */
@media (max-width: 576px) {

    .table-responsive {
        overflow-x: auto;
    }
    .topbar h1.content-title {
        font-size: 16px;
    }

    .table th, .table td {
        font-size: 12px;
        white-space: nowrap;
    }
    .toggle-filter {
        display: none;
    }
}

/* (tabletler: 577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {

    .content-title {
        font-size: 16px;
    }

    .table th, .table td {
        font-size: 12px;
    }
}
@media (max-width: 999px) {
    .card-bilgi-item {
        flex-wrap: wrap;
    }

    .card-bilgi-item .value {
        margin-left: 0.5px;
    }
}
@media screen and (max-width: 767px) {
    .sidebar {
        transition-property: transform;
        width: 198px;
        max-width: calc(100vw - 32px);
    }
    body.sidebar-collapsed .sidebar {
        transform: translateX(-100%);
    }
    body.sidebar-collapsed .sidebar-menu-item-link-icon {
        margin: 0;
        margin-right: 8px;
    }
    body.sidebar-collapsed .sidebar-menu-item:hover > .sidebar-submenu,
    body.sidebar-collapsed .sidebar-menu-title-collapsed {
        display: none;
    }
    body.sidebar-collapsed .sidebar-menu-item.active > .sidebar-submenu,
    body.sidebar-collapsed .sidebar-menu-title-expanded,
    body.sidebar-collapsed .sidebar-menu-item-link-arrow,
    body.sidebar-collapsed .sidebar-menu-item-link-text {
        display: block;
    }
    body.sidebar-collapsed .sidebar-menu-item > .sidebar-submenu {
        position: static;
        margin-left: 24px;
        border: none;
        border-left: 1px solid var(--neutral-200);
        padding: 0;
        width: auto;
    }
    .sidebar-overlay {
        display: block;
        visibility: visible;
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.5);
        transition-property: opacity, visibility;
        transition-duration: var(--duration-150);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 30;
    }
    body.sidebar-collapsed .sidebar-overlay {
        opacity: 0;
        visibility: hidden;
    }
    body.sidebar-collapsed .main,
    .main {
        margin-left: 0;
    }
    .mobile-only {
        display: inline-block;
    }
}
@media screen and (max-width: 575px) {
    .topbar-right > * {
        margin-right: 8px;
    }
    .topbar-search-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        max-width: unset;
        z-index: 20;
        margin: 0;
        padding: 0 16px;
        display: none;
    }
    .topbar-search-wrapper.active {
        display: flex;
    }
    .topbar-search-back,
    .topbar-right-item-search {
        display: flex;
    }
    .general-info-card {
        position: relative;
        margin-bottom: 36px;
    }
}
/* end: Breakpoints */
