body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f9;
}

/* Navbar özel link hover efekti */
.navbar-nav .nav-link.hover-white:hover {
    color: white !important;
    opacity: 1 !important;
}

/* Soft shadow efekti global kullanım */
.soft-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Ostim Teknik Üniversitesi Kurumsal Renkleri */
:root {
    --ostim-blue: #142F55; /* Kurumsal Lacivert */
    --ostim-orange: #ED5B26; /* Kurumsal Turuncu */
    --ostim-bordo: #8e1b30; /* Kurumsal Bordo */
}

/* Navbar bg-ostim sınıfı */
.bg-ostim {
    background-color: var(--ostim-blue) !important;
    border-bottom: 5px solid var(--ostim-bordo); /* Alt kısıma oldukça belirgin şık bordo çizgi */
}

/* Hover durumlarında kurumsal bordo detayını yakalamak için */
.navbar-nav .nav-link.hover-white:hover {
    color: var(--ostim-bordo) !important;
    font-weight: 700 !important; /* Üzerine gelince belirginleşmesi için kalın (bold) font */
    opacity: 1 !important;
}

/* İhaleler paneli için 2-satır scroll edilebilir hücre yapısı */
.cell-2-lines {
    max-height: 2.6em; /* Yaklaşık 2 satır */
    overflow-y: auto;
    overflow-x: hidden;
    white-space: normal;
    word-break: break-word;
    font-size: 0.75rem; /* Ekrana sığması için kompakt font */
    line-height: 1.3;
    padding-right: 2px;
}

/* Scrollbar özelleştirmesi (Belirgin) */
.cell-2-lines::-webkit-scrollbar {
    width: 6px;
}
.cell-2-lines::-webkit-scrollbar-track {
    background-color: #f1f5f9; /* Yol rengi */
    border-radius: 4px;
}
.cell-2-lines::-webkit-scrollbar-thumb {
    background-color: #64748b; /* Koyu belirgin kaydırma rengi */
    border-radius: 4px;
}
.cell-2-lines::-webkit-scrollbar-thumb:hover {
    background-color: #475569;
}

/* Çok yoğun Excel tablosu için özelleştirilmiş stil */
.excel-table {
    table-layout: fixed;
    width: 100%;
}
.excel-table th, .excel-table td {
    padding: 0.25rem 0.3rem !important; /* Çok dar padding */
    vertical-align: top;
}

/* Kurumsal Bordo Buton */
.btn-bordo {
    background-color: #8e1b30;
    color: white;
    border: 1px solid #7a1527;
}
.btn-bordo:hover {
    background-color: #6d1123;
    color: white;
}
