/* Ön Muhasebe Sistemi - Özel CSS */

/* Genel Stiller */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
}

/* Dashboard Kartları */
.dashboard-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Tablo Stilleri */
.table-responsive {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Form Stilleri */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Fatura Stilleri */
.invoice-header {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.invoice-footer {
    border-top: 2px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 2rem;
}

.invoice-details {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

/* Yazdırma Stilleri */
@media print {
    .no-print {
        display: none !important;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    body {
        background-color: #fff;
    }
    
    .invoice-container {
        border: none;
        box-shadow: none;
    }
}

/* Fatura Durumu Renkleri */
.status-paid {
    color: #198754;
}

.status-pending {
    color: #fd7e14;
}

.status-overdue {
    color: #dc3545;
}

/* Özel Butonlar */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
}

/* Yardımcı Sınıflar */
.cursor-pointer {
    cursor: pointer;
}

.border-dashed {
    border-style: dashed !important;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .dashboard-card {
        margin-bottom: 1rem;
    }
} 