/* Ana Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Ana Sayfa */
.jumbotron {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.card {
    transition: transform 0.3s;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: bold;
}

/* Dashboard */
.dashboard-card {
    text-align: center;
    padding: 20px;
}

.dashboard-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.dashboard-value {
    font-size: 2rem;
    font-weight: bold;
}

.dashboard-label {
    font-size: 1.2rem;
    color: #000;
}

/* Tablo Stilleri */
.table-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.table th {
    background-color: #f8f9fa;
}

/* Form Stilleri */
.form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.form-title {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Uyarı Stilleri */
.alert {
    border-radius: 10px;
}

/* Stok Uyarısı */
.stock-warning {
    color: #dc3545;
    font-weight: bold;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .jumbotron {
        padding: 1rem;
    }
    
    .dashboard-card {
        margin-bottom: 15px;
    }
    
    .form-container {
        padding: 15px;
    }
}

/* Yazdırma Stilleri */
@media print {
    .no-print {
        display: none;
    }
    
    .print-only {
        display: block;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
}

/* Fatura Stilleri */
.invoice-header {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.invoice-title {
    font-size: 2rem;
    font-weight: bold;
}

.invoice-details {
    margin-bottom: 30px;
}

.invoice-total {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Login ve Kayıt Sayfası */
.auth-container {
    max-width: 500px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    text-align: center;
    margin-bottom: 30px;
}
