/* Form elemanları için özel stiller */
.form-control,
.form-select {
    border-color: #d3d8dd !important; /* Daha koyu bir border rengi */
    border-radius: 1.25rem !important; /* Köşeleri yuvarla - biraz daha az */
    transition: all 0.2s ease-in-out;
    height: calc(1.4rem + 0.8rem) !important; /* Daha küçük yükseklik */
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #aeb0b1 !important; /* Odaklandığında daha koyu renk */
    box-shadow: 0 0 0 0.12rem rgba(108, 117, 125, 0.25) !important; /* Hafif gölge */
}

/* Custom select dropdown style */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-size: 10px 10px;
    padding-right: 2rem;
}

/* Disabled input styles */
.form-control:disabled,
.form-select:disabled {
    background-color: #e9ecef;
    border-color: #ced4da;
}

/* Textarea specific styles */
textarea.form-control {
    min-height: 70px;
    height: auto;
}

/* Form label styles */
.form-label {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* Card styles */
.card {
    border-radius: 0.75rem;
    overflow: hidden;
}

.card-header {
    padding: 0.7rem 1rem !important;
}

.card-body {
    padding: 1rem !important;
}

/* Button sizing */
.btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    border-radius: 0.75rem;
}

/* Page title styles */
h2.fw-bold {
    font-size: 1.6rem !important;
    margin-bottom: 0.75rem !important;
}

/* Card title styles */
h5.fw-bold, h5.mb-0 {
    font-size: 1.1rem !important;
}

/* Form spacing */
.mb-3 {
    margin-bottom: 0.75rem !important;
}

/* Form icon styling */
.card-header i.bi {
    font-size: 0.9rem;
}

/* Required fields indicator */
.text-danger {
    font-size: 80%;
}

/* Navbar logo ve toggle buton ayarları */
.navbar .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.navbar .d-flex.align-items-center {
    margin-left: 1rem;
}

.navbar-brand img {
    margin-right: 0.5rem !important;
}

#sidebarToggle {
    margin-left: 0.75rem !important;
}

/* Bildirim ve mesaj ikonları arasındaki boşluğu azalt */
.navbar-nav li.nav-item.d-flex.align-items-center.me-3 {
    margin-right: 0.25rem !important;
}

/* Özellikle bildirim ve mesaj ikonları arasındaki boşluk için */
#notificationIcon, #messageIcon {
    margin-right: 0;
}

/* Bildirim ikonunun sağına özel kenar boşluğu */
li:has(#notificationIcon) {
    margin-right: 0.25rem !important;
}

/* Placeholder metinleri için italik stil */
::placeholder {
    font-style: italic !important;
    opacity: 0.6 !important;
}

/* Sidebar menüsündeki boşluğu azalt */
#sidebar {
    padding-top: 0 !important;
}

#sidebar .py-2 {
    padding-top: 0.5rem !important;
} 