/* Genel Ayarlar */
:root {
    --bs-primary: #fe7f01;
    --bs-primary-rgb: 254, 127, 1;
    --bs-warning: #fe7f01;
    --bs-warning-rgb: 254, 127, 1;
}

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

/* --- Login Ekranı Stilleri --- */
.login-container {
    height: 100vh;
    display: flex;
}

.login-form-side {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
    z-index: 2;
}

@media (min-width: 768px) {
    .login-form-side {
        width: 40%;
    }
}

.login-form-wrapper {
    width: 100%;
    max-width: 400px;
}

.login-logo-side {
    width: 60%;
    background: linear-gradient(135deg, #fe7f01 0%, #d66a00 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.login-logo-side i {
    font-size: 8rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.2));
}

.login-logo-side h1 {
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}

.login-logo-side p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Input ve Buton Stilleri */
.form-control:focus {
    border-color: #fe7f01;
    box-shadow: 0 0 0 0.25rem rgba(254, 127, 1, 0.15);
}

.btn-primary {
    background-color: #fe7f01;
    border: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #e07000;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(254, 127, 1, 0.3);
}

/* --- Dashboard (Ana Panel) Ortak Stilleri --- */
#wrapper {
    display: flex;
    min-height: 100vh;
}

#sidebar {
    width: 250px;
    background-color: #1e2227; /* Kurumsal antrasit/lacivert ton */
    color: #fff;
    min-height: 100vh;
    transition: all 0.3s;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    z-index: 10;
}

#sidebar .sidebar-header {
    padding: 20px;
    background-color: #15181b;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 1px;
}

#sidebar ul.components {
    padding: 20px 0;
}

#sidebar ul li a {
    padding: 15px 25px;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

#sidebar ul li a:hover, #sidebar ul li.active > a {
    color: #fff;
    background: #fe7f01;
    border-left: 4px solid #ffffff;
}

#sidebar ul li a i {
    width: 25px;
    font-size: 1.1em;
    margin-right: 10px;
}

#content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #f4f6f9;
    min-width: 0; /* Bootstrap tabloları taşmasın diye */
}

.top-navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-content {
    padding: 30px;
    flex: 1;
}

/* Ortak Kart Stilleri */
.card-custom {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.card-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
