/* Temel stil ayarları */
body {
    padding-top: 60px;
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar özelleştirmeleri */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Kart stilleri */
.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    padding: 1rem 1.25rem;
}

/* Tablo stilleri */
.table {
    margin-bottom: 0;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Buton özelleştirmeleri */
.btn {
    border-radius: 5px;
    padding: 0.375rem 0.75rem;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Form kontrolleri */
.form-control, .form-select {
    border-radius: 5px;
    padding: 0.375rem 0.75rem;
}

/* Alert mesajları */
.alert {
    border-radius: 5px;
}

/* Footer stilleri */
footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }
    
    .card {
        margin-bottom: 15px;
    }
}
/* PDF Önizleme Stilleri */
.pdf-container {
    background-color: #f5f5f5;
    margin-bottom: 20px;
}

#pdf-canvas {
    display: block;
    margin: 0 auto;
    background-color: white;
}

.pdf-controls {
    padding: 8px 15px;
    background-color: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

/* Resim Önizleme Stilleri */
.img-preview {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}