body {
    background-color: #f2f2f2;
}

.btnEkle {
    background-color: #e01ae4 !important;
    border: none;
    color: #fff !important;
}

.btnEkle:hover {
    background-color: #c918cc !important;
    border: none;
    color: #fff !important;
}

.content {
    margin-left: 280px;
    /* Sidebar genişliği kadar */
    padding: 20px;
}

.modal-content {
    background-color: #f2f2f2;
}


.card {
    margin: 0;
}

section.card {
    margin: 1.5rem;
}

textarea {
    resize: none;
    height: 100px;
}

/* Sidebar Temel Stilleri */
.sidebar {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    position: fixed;
    height: 100vh;
    width: 242px;
    z-index: 1000;
    transition: all 0.3s;
    overflow-y: auto;
}

.sidebar-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 5;
}

/* Ana içerik alanını sidebar genişliğine göre ayarla */
.flex-grow-1 {
    margin-left: 265px;
    width: calc(100% - 265px);
    transition: all 0.3s;
}

.sidebar .nav-link {
    color: #000000 !important;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    margin: 2px;
}

/* Aktif menü öğesi için stil */
.sidebar .nav-link.active {
    background-color: #e01ae4;
    border-radius: 5px;
    color: #fff !important;
}

/* Menü öğeleri için hover efekti */
.sidebar .nav-link:hover {
    background-color: #e01ae4 !important;
    border-radius: 5px;
    color: #fff !important;
}

/* Tüm sayfa için scrollbar stilini özelleştir */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Tab butonlarındaki mavi rengi kaldır - anlaşmalar sayfası için */
#hizmetlerTab .nav-link,
#hizmetlerTab .nav-link.active,
#hizmetlerTab .nav-link:hover,
#hizmetlerTab .nav-link:focus {
    background-color: transparent !important;
    color: #000 !important;
    border: none !important;
}

/* Aktif sekme için sadece alt çizgi kullan */
#hizmetlerTab .nav-link.active {
    border-bottom: 2px solid #444 !important;
    font-weight: 500;
}

/* Select2 için z-index ayarları */
.select2-container--open {
    z-index: 9999 !important;
}

.select2-dropdown {
    z-index: 9999 !important;
}

/* Select2 modal içinde düzgün görünmesi için */
.select2-container {
    width: 100% !important;
}

/* Select2 modalda tam genişlik için */
.modal .select2 {
    width: 100% !important;
}

/* Select2 küçük dropdown için */
.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

/* Vuexy Tarzında Kanban Tasarımı */

/* Kanban Container */
.kanban-container {
    display: flex;
    overflow-x: auto;
    gap: 1.25rem;
    padding: 1rem 0.25rem;
    min-height: 70vh;
}

/* Kanban Sütunları */
.kanban-column {
    height: 100%;
    background-color: #f9fafc;
    border-radius: 0.428rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.kanban-column-header {
    padding: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.kanban-cards {
    padding: 0.5rem;
    overflow-y: auto;
    height: calc(100% - 50px);
    max-height: 70vh;
}

.kanban-column-header h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Kanban Kartlar Konteyneri */
.kanban-cards {
    padding: 0.75rem;
    overflow-y: auto;
    max-height: calc(80vh - 60px);
    min-height: 200px;
}

/* Kanban Kartlar */
.kanban-card {
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.kanban-card:last-child {
    margin-bottom: 0.5rem;
}

.kanban-card .card {
    border: none;
    border-radius: 0.428rem;
    box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.1);
    border-left: none; /* Varsayılan sol kenarlığı kaldır */
    transition: all 0.2s ease;
}

.kanban-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(34, 41, 47, 0.2);
}

/* Kart Başlığı */
.kanban-card .card-baslik {
    padding: 0.75rem 1.25rem;
}

.kanban-card .card-baslik h6 {
    font-size: 1rem;
    font-weight: 600;
}

/* Kart İçeriği */
.kanban-card .card-body {
    padding: 1rem 1.25rem;
    background-color: #fff;
}

.kanban-card .card-text {
    color: #6e6b7b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Durum İşaretçileri/Etiketleri */

.status-islemde {
    border-left: 4px solid #7367f0 !important; /* Mor */
}

.status-tamamlandi {
    border-left: 4px solid #28c76f !important; /* Yeşil */
}

.status-iptal-edildi {
    border-left: 4px solid #ea5455 !important; /* Kırmızı */
}

.status-gecmis,
.status-islemde,
.status-gelecek {
    /* Varsayılan stili kaldırma */
    border-left: none;
}

/* Daha fazla buton */
.kanban-load-more {
    padding: 0.5rem;
}

.kanban-load-more button {
    background-color: #f8f8f8;
    border: 1px dashed #ced4da;
    color: #5e5873;
    transition: all 0.2s ease;
    width: 100%;
    padding: 0.6rem;
    font-size: 0.85rem;
}

.kanban-load-more button:hover {
    background-color: #efefef;
    color: #5e5873;
}

/* Detay Butonları */
.gorev-detay-btn {
    min-width: 32px;
    height: 32px;
    padding: 0.25rem 0.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.357rem;
    background-color: rgba(255, 255, 255, 0.8);
}

.gorev-detay-btn:hover {
    background-color: #000;
}

/* Ajanda görünümü için stiller */
.fc-event {
    cursor: pointer;
    transition: all 0.15s ease;
}

.fc-event:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    z-index: 5;
}

.fc-toolbar-title {
    font-size: 1.3rem !important;
    font-weight: 500;
    text-transform: capitalize;
}

.fc-day-today {
    background-color: rgba(13, 110, 253, 0.05) !important;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .fc-toolbar {
        flex-direction: column;
    }
    .fc-toolbar-title {
        margin-bottom: 10px;
        font-size: 1.1rem !important;
    }
    #calendar {
        height: 500px !important;
    }
}
