/*
 * ROGS MAKİNE - Custom Theme CSS
 * Kurumsal Renkler: Navy #004080, Accent #0056b3, Grey #999999, Light Grey #f5f7fa
 */

/* CSS Custom Properties - ROGS Colors */
:root {
    --rogs-navy: #004080;
    --rogs-accent: #0056b3;
    --rogs-grey: #999999;
    --rogs-light-grey: #f5f7fa;
    --rogs-form-bg: rgba(255,255,255,0.95);
    --rogs-navy-light: #1a5490;
    --rogs-navy-dark: #003066;
    --rogs-accent-light: #1a66c3;
    --rogs-accent-dark: #004499;
}

/* Global Font Settings */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--rogs-navy);
}

/* Sidebar Styling */
.sidebar {
    background: linear-gradient(180deg, var(--rogs-navy) 0%, var(--rogs-navy-dark) 100%);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar .nav-link:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.sidebar .nav-link.active {
    color: #fff !important;
    background-color: var(--rogs-accent);
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3);
}

.sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

/* Bootstrap Color Override */
:root {
    --bs-primary: var(--rogs-navy);
    --bs-primary-rgb: 0, 64, 128;
}

/* Global Override - Primary Color to ROGS Navy */
.btn-primary {
    background-color: var(--rogs-navy) !important;
    border-color: var(--rogs-navy) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--rogs-navy-light) !important;
    border-color: var(--rogs-navy-light) !important;
}

.btn-primary:focus, .btn-primary:active {
    background-color: var(--rogs-navy-dark) !important;
    border-color: var(--rogs-navy-dark) !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 64, 128, 0.25) !important;
}

/* Accent Buttons */
.btn-accent {
    background-color: var(--rogs-accent);
    border-color: var(--rogs-accent);
    color: #fff;
}

.btn-accent:hover {
    background-color: var(--rogs-accent-light);
    border-color: var(--rogs-accent-light);
    color: #fff;
}

.btn-accent:focus, .btn-accent:active {
    background-color: var(--rogs-accent-dark);
    border-color: var(--rogs-accent-dark);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

/* Header Customization */
.app-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.app-header .app-container {
    padding: 0 2rem;
}

/* Sidebar Customization */
.app-sidebar {
    background-color: var(--rogs-navy);
    border-right: none;
}

.app-sidebar-logo {
    background-color: var(--rogs-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-sidebar-menu .menu-link {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.app-sidebar-menu .menu-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.app-sidebar-menu .menu-link.active {
    background-color: var(--rogs-accent);
    color: #fff;
}

.app-sidebar-menu .menu-title {
    color: inherit;
}

.app-sidebar-menu .menu-icon i {
    color: inherit;
}

/* Dashboard Specific Styles */

/* Admin Cards */
.admin-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.admin-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.admin-card .card-header {
    background: #004080 !important;
    color: white !important;
    border-radius: 12px 12px 0 0 !important;
    border: none !important;
    padding: 1rem 1.5rem !important;
}

.admin-card .card-header h1,
.admin-card .card-header h2,
.admin-card .card-header h3,
.admin-card .card-header h4,
.admin-card .card-header h5,
.admin-card .card-header h6 {
    color: white !important;
    margin: 0 !important;
    font-weight: 600 !important;
}

.admin-card .card-header p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
}

.admin-card .card-header i {
    color: white !important;
}

.admin-card .card-header a {
    color: white !important;
}

.admin-card .card-header a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.admin-card .card-header .btn {
    color: white !important;
    border-color: white !important;
}

.admin-card .card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
}

.admin-card .card-body {
    padding: 1.5rem;
}

/* Statistics Cards */
.stat-card {
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-navy-dark) 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-card.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.stat-card.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
}

.stat-card.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.stat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.3;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-change {
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-change.positive {
    color: rgba(255,255,255,0.9);
}

.stat-change.negative {
    color: #ff6b6b;
}

.stat-change.neutral {
    color: rgba(255,255,255,0.7);
}

/* Chart Cards */
.chart-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.chart-body {
    padding: 1.5rem;
}

/* Activity Card */
.activity-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.activity-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.activity-body {
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.activity-item:hover {
    background: var(--rogs-light-grey);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 0.875rem;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.activity-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

.activity-user {
    font-weight: 500;
}

.activity-time::before {
    content: '•';
    margin: 0 0.5rem;
}

/* System Card */
.system-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.system-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.system-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.system-body {
    padding: 1rem;
}

.system-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: background 0.3s ease;
}

.system-item:hover {
    background: var(--rogs-light-grey);
}

.system-info {
    display: flex;
    flex-direction: column;
}

.system-label {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.system-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
}

.system-status {
    font-size: 1.2rem;
}

.system-status.success {
    color: #28a745;
}

.system-status.warning {
    color: #ffc107;
}

.system-status.danger {
    color: #dc3545;
}

.app-sidebar-menu .menu-arrow {
    color: rgba(255, 255, 255, 0.6);
}

.app-sidebar-menu .menu-sub .menu-link {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 3rem;
}

.app-sidebar-menu .menu-sub .menu-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.app-sidebar-menu .menu-sub .menu-link.active {
    background-color: var(--rogs-accent);
    color: #fff;
}

/* Sidebar Toggle */
.app-sidebar-toggle {
    background-color: var(--rogs-accent) !important;
    border-color: var(--rogs-accent) !important;
    color: #fff !important;
}

.app-sidebar-toggle:hover {
    background-color: var(--rogs-accent-light) !important;
    border-color: var(--rogs-accent-light) !important;
}

/* Toolbar */
.app-toolbar {
    background-color: var(--rogs-light-grey);
    border-bottom: 1px solid #e5e5e5;
}

.page-heading {
    color: var(--rogs-navy) !important;
}

.breadcrumb .breadcrumb-item {
    color: var(--rogs-grey);
}

.breadcrumb .breadcrumb-item a {
    color: var(--rogs-navy);
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--rogs-accent);
}

/* Content Area */
.app-content {
    background-color: #fff;
}

/* Cards */
.card {
    border: 1px solid #e5e5e5;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    background: #004080 !important;
    color: white !important;
    border-radius: 12px 12px 0 0 !important;
    border: none !important;
    padding: 1rem 1.5rem !important;
}

.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6 {
    color: white !important;
    margin: 0 !important;
    font-weight: 600 !important;
}

.card-header p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
}

.card-header i {
    color: white !important;
}

.card-header a {
    color: white !important;
}

.card-header a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.card-header .btn {
    color: white !important;
    border-color: white !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
}

/* Tables */
.table {
    color: #333;
}

.table th {
    background-color: var(--rogs-light-grey);
    color: var(--rogs-navy);
    font-weight: 600;
    border-bottom: 2px solid var(--rogs-navy);
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: rgba(245, 247, 250, 0.5);
}

.table-hover > tbody > tr:hover > td {
    background-color: var(--rogs-light-grey);
}

/* Forms */
.form-control {
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--rogs-accent);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.form-label {
    color: var(--rogs-navy);
    font-weight: 500;
}

.form-floating > label {
    color: var(--rogs-grey);
}

.form-floating > .form-control:focus ~ label {
    color: var(--rogs-accent);
}

/* Form Background */
.form-container {
    background-color: var(--rogs-form-bg);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Modal */
.modal-header {
    background-color: var(--rogs-navy);
    color: #fff;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-footer .btn-primary {
    background-color: var(--rogs-navy);
    border-color: var(--rogs-navy);
}

/* Alerts */
.alert-primary {
    background-color: rgba(0, 64, 128, 0.1);
    border-color: var(--rogs-navy);
    color: var(--rogs-navy);
}

.alert-info {
    background-color: rgba(0, 86, 179, 0.1);
    border-color: var(--rogs-accent);
    color: var(--rogs-accent);
}

/* Navigation Pills/Tabs */
.nav-pills .nav-link.active {
    background-color: var(--rogs-navy);
}

.nav-tabs .nav-link.active {
    color: var(--rogs-navy);
    border-color: var(--rogs-navy) var(--rogs-navy) #fff;
}

.nav-tabs .nav-link:hover {
    border-color: var(--rogs-accent) var(--rogs-accent) #dee2e6;
    color: var(--rogs-accent);
}

/* Progress Bar */
.progress-bar {
    background-color: var(--rogs-navy);
}

.progress-bar-accent {
    background-color: var(--rogs-accent);
}

/* Badge */
.badge.bg-primary {
    background-color: var(--rogs-navy) !important;
}

.badge.bg-accent {
    background-color: var(--rogs-accent) !important;
}

/* Dropdown */
.dropdown-menu {
    border: 1px solid #e5e5e5;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item:hover {
    background-color: var(--rogs-light-grey);
    color: var(--rogs-navy);
}

.dropdown-item.active {
    background-color: var(--rogs-navy);
    color: #fff;
}

/* Pagination */
.page-link {
    color: var(--rogs-navy);
    border-color: #dee2e6;
}

.page-link:hover {
    color: var(--rogs-accent);
    background-color: var(--rogs-light-grey);
    border-color: var(--rogs-accent);
}

.page-item.active .page-link {
    background-color: var(--rogs-navy);
    border-color: var(--rogs-navy);
    color: #fff;
}

/* Text Colors */
.text-rogs-navy {
    color: var(--rogs-navy) !important;
}

.text-rogs-accent {
    color: var(--rogs-accent) !important;
}

.text-rogs-grey {
    color: var(--rogs-grey) !important;
}

/* Background Colors */
.bg-rogs-navy {
    background-color: var(--rogs-navy) !important;
    color: #fff !important;
}

.bg-rogs-accent {
    background-color: var(--rogs-accent) !important;
    color: #fff !important;
}

.bg-rogs-light-grey {
    background-color: var(--rogs-light-grey) !important;
}

/* Loading Spinner */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-navy-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-screen .spinner-border {
    color: #fff;
    width: 3rem;
    height: 3rem;
}

/* Dashboard Stats Cards */
.stats-card {
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-accent) 100%);
    color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.15s ease-in-out;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.stats-card .card-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stats-card .card-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stats-card .card-value {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

/* Stats Items (Categories style) */
.stats-item {
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.stats-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.stats-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    font-family: 'Inter', sans-serif;
}

/* Chart Containers */
.chart-container {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Data Tables */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: var(--rogs-navy) !important;
    border-color: var(--rogs-navy) !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: var(--rogs-accent) !important;
    border-color: var(--rogs-accent) !important;
    color: #fff !important;
}

/* Search Input */
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--rogs-accent);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

/* File Upload */
.dropzone {
    border: 2px dashed var(--rogs-accent);
    border-radius: 0.5rem;
    background-color: var(--rogs-light-grey);
    transition: all 0.3s ease;
}

.dropzone:hover {
    border-color: var(--rogs-navy);
    background-color: rgba(0, 64, 128, 0.05);
}

.dropzone.dz-drag-hover {
    border-color: var(--rogs-navy);
    background-color: rgba(0, 64, 128, 0.1);
}

/* Select2 Styling */
.select2-container--default .select2-selection--single {
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    height: calc(1.5em + 0.75rem + 2px);
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--rogs-accent);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--rogs-accent);
}

@media (max-width: 991.98px) {
    .app-header .app-container {
        padding: 0 1rem;
    }
    
    .app-toolbar .app-container {
        padding: 0 1rem;
    }
    
    .app-content .app-container {
        padding: 0 1rem;
    }
    
    .form-container {
        padding: 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .app-content {
        background-color: #1a1a1a;
        color: #fff;
    }
    
    .card {
        background-color: #2d2d2d;
        border-color: #404040;
        color: #fff;
    }
    
    .table {
        color: #fff;
    }
    
    .form-control {
        background-color: #2d2d2d;
        border-color: #404040;
        color: #fff;
    }
    
    .form-control:focus {
        background-color: #2d2d2d;
        border-color: var(--rogs-accent);
        color: #fff;
    }
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--rogs-light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--rogs-grey);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rogs-navy);
}

/* Print Styles */
@media print {
    .app-header,
    .app-sidebar,
    .app-toolbar,
    .app-footer {
        display: none !important;
    }
    
    .app-main {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .page-break {
        page-break-after: always;
    }
} 

/* Sipariş Yönetimi Sayfası Stilleri */
.orders-page {
    background-color: var(--rogs-light-grey);
    min-height: 100vh;
}

/* İstatistik Kartları */
.stat-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stat-card .card-body {
    padding: 1.5rem;
}

.stat-card .border-start {
    border-left-width: 4px !important;
}

.stat-card .text-xs {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-card .h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Filtre Kartı */
.filters-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.filters-card .card-header {
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-navy-dark) 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.filters-card .card-header h6 {
    color: white;
    margin: 0;
}

/* Tablo Stilleri */
.orders-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.orders-table .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.orders-table .table {
    margin-bottom: 0;
}

.orders-table .table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: var(--rogs-navy);
    padding: 1rem 0.75rem;
}

.orders-table .table td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
}

.orders-table .table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Badge Stilleri */
.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.badge.bg-primary {
    background-color: var(--rogs-navy) !important;
}

.badge.bg-info {
    background-color: var(--rogs-accent) !important;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge.bg-secondary {
    background-color: var(--rogs-grey) !important;
}

/* Buton Grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 0.25rem;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

.btn-group .btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* Form Kontrolleri */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--rogs-navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 64, 128, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--rogs-navy);
    margin-bottom: 0.5rem;
}

/* Modal Stilleri */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-navy-dark) 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-title {
    color: white;
    font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0 15px;
    }
    
    .stat-card .card-body {
        padding: 1rem;
    }
    
    .orders-table .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn-group .btn {
        margin-bottom: 0.25rem;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .col-md-6.text-end {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .filters-card .row > div {
        margin-bottom: 1rem;
    }
    
    .orders-table .table th,
    .orders-table .table td {
        padding: 0.5rem;
    }
}

/* Loading Animasyonu */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--rogs-navy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Toast Bildirimleri */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: none;
}

.toast.toast-success {
    border-left: 4px solid #28a745;
}

.toast.toast-error {
    border-left: 4px solid #dc3545;
}

.toast.toast-warning {
    border-left: 4px solid #ffc107;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.page-link {
    color: var(--rogs-navy);
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    margin: 0 0.125rem;
    border-radius: 6px;
}

.page-link:hover {
    color: var(--rogs-navy-dark);
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: var(--rogs-navy);
    border-color: var(--rogs-navy);
    color: white;
}

/* Checkbox Stilleri */
.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.25em;
    border: 2px solid #ced4da;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: var(--rogs-navy);
    border-color: var(--rogs-navy);
}

.form-check-input:focus {
    border-color: var(--rogs-navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 64, 128, 0.25);
}

/* Bulk Actions */
.bulk-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bulk-actions .form-select {
    min-width: 150px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h5 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #6c757d;
    margin-bottom: 0;
} 

/* Media Picker Styles */
.media-item {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.media-item:hover {
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.media-item.selected {
    border-color: #0056b3;
    background-color: rgba(0, 86, 179, 0.1);
}

.media-item-checkbox {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
}

.media-item-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    overflow: hidden;
}

.media-item-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.media-item-info {
    padding: 8px;
}

.media-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 4px;
    word-break: break-word;
}

.media-item-meta {
    font-size: 0.75rem;
    color: #6c757d;
}

.media-item-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    display: none;
    gap: 4px;
}

.media-item:hover .media-item-actions {
    display: flex;
}

.upload-area {
    transition: all 0.2s ease;
    cursor: pointer;
}

.upload-area.dragover {
    border-color: #0056b3;
    background-color: rgba(0, 86, 179, 0.1);
}

.upload-area:hover {
    border-color: #0056b3;
}

.media-grid-container {
    background-color: #f8f9fa;
}

.video-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #6c757d;
}

.document-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #6c757d;
}

/* Modal specific styles */
#mediaPickerModal .modal-xl {
    max-width: 1200px;
}

#mediaPickerModal .modal-body {
    max-height: 70vh;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .media-item {
        margin-bottom: 1rem;
    }
    
    .media-item-preview {
        height: 100px;
    }
} 

/* Teklif Formu Özel Stilleri */
.quotation-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.quotation-form .card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 64, 128, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.quotation-form .card-header {
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-accent) 100%);
    border: none;
    padding: 1.5rem;
}

.quotation-form .card-header h5 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.quotation-form .card-body {
    padding: 2rem;
}

.quotation-form .form-label {
    font-weight: 600;
    color: var(--rogs-navy);
    margin-bottom: 0.5rem;
}

.quotation-form .form-control,
.quotation-form .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quotation-form .form-control:focus,
.quotation-form .form-select:focus {
    border-color: var(--rogs-navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 64, 128, 0.15);
}

.quotation-form .form-control.border-primary {
    border-color: var(--rogs-navy) !important;
}

.quotation-form .form-control.border-info {
    border-color: #17a2b8 !important;
}

.quotation-form .form-control.border-warning {
    border-color: #ffc107 !important;
}

.quotation-form .form-control.border-success {
    border-color: #28a745 !important;
}

.quotation-form .form-control.border-secondary {
    border-color: #6c757d !important;
}

.quotation-form .form-select.border-primary {
    border-color: var(--rogs-navy) !important;
}

.quotation-form .form-select.border-warning {
    border-color: #ffc107 !important;
}

.quotation-form .bg-gradient-primary {
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-accent) 100%) !important;
}

.quotation-form .bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.quotation-form .bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.quotation-form .shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.quotation-form .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.quotation-form .btn-primary {
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-accent) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 64, 128, 0.3);
}

.quotation-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 64, 128, 0.4);
}

.quotation-form .btn-lg {
    padding: 1rem 2rem;
    font-size: 16px;
}

.quotation-form .text-muted {
    color: #6c757d !important;
    font-size: 12px;
}

.quotation-form .invalid-feedback {
    font-size: 12px;
    color: #dc3545;
}

.quotation-form .quotation-item {
    background: #fff;
    border: 2px solid #e9ecef !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quotation-form .quotation-item:hover {
    border-color: var(--rogs-navy) !important;
    box-shadow: 0 4px 15px rgba(0, 64, 128, 0.1);
}

.quotation-form .quotation-item .text-primary {
    color: var(--rogs-navy) !important;
}

.quotation-form .opacity-75 {
    opacity: 0.75;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .quotation-form .card-body {
        padding: 1rem;
    }
    
    .quotation-form .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }
    
    .quotation-form .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quotation-form .d-flex.gap-2 {
        gap: 0.5rem !important;
    }
}

/* Animasyonlar */
.quotation-form .fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quotation-form .slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
} 

/* Siparişler Sayfası Silme Butonu Stilleri */
.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-outline-danger:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Toplu işlem dropdown'unda silme seçeneği için stil */
.form-select option[value="delete"] {
    color: #dc3545;
    font-weight: 600;
}

/* Silme onay mesajı için stil */
.delete-confirmation {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #feb2b2;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.delete-confirmation .alert-icon {
    color: #dc3545;
    font-size: 1.5rem;
}

/* Silme butonu animasyonu */
.btn-outline-danger.delete-btn {
    position: relative;
    overflow: hidden;
}

.btn-outline-danger.delete-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-outline-danger.delete-btn:hover::before {
    left: 100%;
}

/* Responsive tasarım için silme butonu */
@media (max-width: 768px) {
    .btn-group .btn-outline-danger {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .btn-group .btn-outline-danger i {
        font-size: 0.75rem;
    }
} 

/* SweetAlert2 Özel Stilleri */
.swal2-custom-popup {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.swal2-custom-popup .swal2-title {
    color: var(--rogs-navy);
    font-weight: 600;
    font-size: 1.5rem;
}

.swal2-custom-popup .swal2-html-container {
    font-size: 1rem;
    line-height: 1.6;
}

.swal2-custom-popup .swal2-confirm {
    background: linear-gradient(135deg, var(--rogs-navy) 0%, var(--rogs-accent) 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.swal2-custom-popup .swal2-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 64, 128, 0.4);
}

.swal2-custom-popup .swal2-cancel {
    background: #6c757d;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.swal2-custom-popup .swal2-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Silme dialogu için özel stiller */
.swal2-custom-popup.swal2-delete-popup .swal2-confirm {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.swal2-custom-popup.swal2-delete-popup .swal2-confirm:hover {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Loading animasyonu için özel stiller */
.swal2-custom-popup .swal2-loading {
    border-color: var(--rogs-navy);
}

.swal2-custom-popup .swal2-loading .swal2-loading-circle {
    border-color: var(--rogs-navy) transparent var(--rogs-navy) transparent;
}

/* Başarı dialogu için özel stiller */
.swal2-custom-popup.swal2-success-popup .swal2-icon {
    border-color: #28a745;
    color: #28a745;
}

/* Hata dialogu için özel stiller */
.swal2-custom-popup.swal2-error-popup .swal2-icon {
    border-color: #dc3545;
    color: #dc3545;
}

/* Uyarı dialogu için özel stiller */
.swal2-custom-popup.swal2-warning-popup .swal2-icon {
    border-color: #ffc107;
    color: #ffc107;
}

/* Soru dialogu için özel stiller */
.swal2-custom-popup.swal2-question-popup .swal2-icon {
    border-color: #17a2b8;
    color: #17a2b8;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .swal2-custom-popup {
        margin: 10px;
        width: calc(100% - 20px) !important;
    }
    
    .swal2-custom-popup .swal2-title {
        font-size: 1.25rem;
    }
    
    .swal2-custom-popup .swal2-html-container {
        font-size: 0.9rem;
    }
    
    .swal2-custom-popup .swal2-confirm,
    .swal2-custom-popup .swal2-cancel {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animasyonlar */
.swal2-custom-popup {
    animation: swal2SlideIn 0.3s ease-out;
}

@keyframes swal2SlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* İkon animasyonları */
.swal2-custom-popup .fas {
    animation: swal2IconPulse 2s infinite;
}

@keyframes swal2IconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Dashboard Custom Styles */
.dashboard-stats {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dashboard-stats:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.stats-item {
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.stats-item:hover {
    background: #e9ecef;
    transform: scale(1.02);
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Dashboard başlıkları için */
.dashboard-stats h3,
.dashboard-stats h4,
.dashboard-stats h5,
.dashboard-stats h6 {
    color: #333 !important;
}

.dashboard-stats .text-primary {
    color: #004080 !important;
}

.dashboard-stats .text-success {
    color: #28a745 !important;
}

.dashboard-stats .text-info {
    color: #17a2b8 !important;
}

.dashboard-stats .text-warning {
    color: #ffc107 !important;
}

.dashboard-stats .text-danger {
    color: #dc3545 !important;
}

.dashboard-stats .text-secondary {
    color: #6c757d !important;
}

.dashboard-stats .text-muted {
    color: #6c757d !important;
}

/* Dashboard kartları için */
.admin-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: none;
    transition: all 0.3s ease;
}

.admin-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.admin-card .card-header {
    background: #004080;
    color: white;
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 1rem 1.5rem;
}

.admin-card .card-header h5 {
    color: white !important;
    margin: 0;
    font-weight: 600;
}

.admin-card .card-header i {
    color: white !important;
}

.admin-card .card-body {
    padding: 1.5rem;
}

/* Dashboard butonları için */
.dashboard-stats .btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dashboard-stats .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dashboard-stats .btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.dashboard-stats .btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.dashboard-stats .btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.dashboard-stats .btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.dashboard-stats .btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.dashboard-stats .btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.dashboard-stats .btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.dashboard-stats .btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.dashboard-stats .btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.dashboard-stats .btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

/* Dashboard list-group için */
.dashboard-stats .list-group-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.dashboard-stats .list-group-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.dashboard-stats .list-group-item:last-child {
    border-bottom: none;
}

.dashboard-stats .list-group-item i {
    font-size: 1.1rem;
}

/* Dashboard badge'leri için */
.dashboard-stats .badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.dashboard-stats .badge.bg-success {
    background-color: #28a745 !important;
    color: white !important;
}

.dashboard-stats .badge.bg-danger {
    background-color: #dc3545 !important;
    color: white !important;
}

.dashboard-stats .badge.bg-info {
    background-color: #17a2b8 !important;
    color: white !important;
}

.dashboard-stats .badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

/* Dashboard border'ları için */
.dashboard-stats .border-end {
    border-right: 2px solid #e9ecef !important;
}

.dashboard-stats hr {
    border-color: #e9ecef;
    margin: 1rem 0;
}

/* Dashboard responsive */
@media (max-width: 768px) {
    .dashboard-stats .stats-number {
        font-size: 1.5rem;
    }
    
    .dashboard-stats .stats-label {
        font-size: 0.8rem;
    }
    
    .dashboard-stats .border-end {
        border-right: none !important;
        border-bottom: 2px solid #e9ecef !important;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Modern Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #004080 0%, #0056b3 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

/* Modern Form Controls */
.form-control-lg, .form-select-lg {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control-lg:focus, .form-select-lg:focus {
    border-color: #004080;
    box-shadow: 0 0 0 0.2rem rgba(0, 64, 128, 0.25);
}

/* Modern Buttons */
.btn-lg {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Modern Cards */
.card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    border-bottom: 1px solid #f8f9fa;
    background: #004080 !important;
    color: white !important;
}

.card-header h5 {
    color: white !important;
}

.card-header i {
    color: white !important;
}

/* Filtreleme bölümü için arka plan */
.card-header {
    background: #004080 !important;
    color: white !important;
}

.card-header h5 {
    color: white !important;
}

.card-header i {
    color: white !important;
}

/* Form etiketleri için beyaz yazı */
.form-label.text-white {
    color: white !important;
}

/* Form elemanları için koyu yazı */
.form-control,
.form-select {
    color: #333 !important;
    background-color: white !important;
}

.form-control::placeholder {
    color: #999 !important;
}

/* Modern Table */
.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background: #004080 !important;
    color: white !important;
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background-color: rgba(0, 64, 128, 0.05);
    transform: scale(1.01);
}

.table tbody td {
    color: #333 !important;
    vertical-align: middle;
}

/* Tablo başlıkları için beyaz yazı */
.table thead th,
.table thead th * {
    color: white !important;
}

/* Tablo içeriği için koyu yazı */
.table tbody td,
.table tbody td * {
    color: #333 !important;
}

/* Ürün adı linki için özel renk */
.product-name a {
    color: #004080 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-name a:hover {
    color: #0056b3 !important;
}

/* SKU ve diğer bilgiler için koyu renk */
.product-sku,
.product-brand-model,
.product-description {
    color: #666 !important;
}

/* Badge'ler için */
.badge {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.badge.bg-light {
    background-color: #f8f9fa !important;
    color: #333 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.badge.bg-success {
    background-color: #28a745 !important;
    color: white !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
    color: white !important;
}

.badge.bg-info {
    background-color: #17a2b8 !important;
    color: white !important;
}

/* Form elemanları için */
.form-control,
.form-select {
    color: #333 !important;
}

/* Butonlar için düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #218838 !important;
    color: white !important;
}

.btn-info {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

.btn-warning:hover {
    background: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

.btn-secondary {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

/* Outline butonlar */
.btn-outline-primary {
    background: transparent !important;
    color: #004080 !important;
    border: 2px solid #004080 !important;
}

.btn-outline-primary:hover {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #6c757d !important;
    border: 2px solid #6c757d !important;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
}

.btn-outline-info {
    background: transparent !important;
    color: #17a2b8 !important;
    border: 2px solid #17a2b8 !important;
}

.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    border-color: #17a2b8 !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: #dc3545 !important;
    border: 2px solid #dc3545 !important;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
}

.btn-outline-success {
    background: transparent !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
}

.btn-outline-success:hover {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: #ffc107 !important;
    border: 2px solid #ffc107 !important;
}

.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
}

/* Light butonlar - özellikle beyaz butonlar için */
.btn-light {
    background: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-light:hover {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
}

.btn-light:focus {
    background: #e2e6ea !important;
    color: #333 !important;
    border-color: #dae0e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Küçük butonlar */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Buton grupları */
.btn-group .btn {
    border-radius: 6px;
    margin-right: 2px;
}

.btn-group .btn:last-child {
    margin-right: 0;
}

/* Card header içindeki butonlar */
.card-header .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.card-header .btn:hover {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light {
    background: white !important;
    color: #004080 !important;
    border-color: white !important;
}

.card-header .btn-light:hover {
    background: #f8f9fa !important;
    color: #004080 !important;
    border-color: #f8f9fa !important;
}

/* Gradient header'lardaki butonlar */
.bg-gradient-primary .btn,
.bg-gradient-success .btn,
.bg-gradient-info .btn,
.bg-gradient-warning .btn {
    color: white !important;
    border-color: white !important;
    background: transparent !important;
}

.bg-gradient-primary .btn:hover,
.bg-gradient-success .btn:hover,
.bg-gradient-info .btn:hover,
.bg-gradient-warning .btn:hover {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light,
.bg-gradient-success .btn-light,
.bg-gradient-info .btn-light,
.bg-gradient-warning .btn-light {
    background: white !important;
    color: #333 !important;
    border-color: white !important;
}

.bg-gradient-primary .btn-light:hover,
.bg-gradient-success .btn-light:hover,
.bg-gradient-info .btn-light:hover,
.bg-gradient-warning .btn-light:hover {
    background: #f8f9fa !important;
    color: #333 !important;
    border-color: #f8f9fa !important;
}

/* Butonlar için genel düzeltme */
.btn {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white !important;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Ana butonlar */
.btn-primary {
    background: #004080 !important;
    color: white !important;
    border-color: #004080 !important;
}

.btn-primary:hover {
    background: #0056b3 !important;
    border-color: #0056b3 !important;
    color: white !important;
}

.btn-success {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background: #218838 !important;
    border-color: #