/* Muhasebe Yönetim Sistemi - Ana Stil Dosyası */

:root {
    --primary-color: #667eea;
    --secondary-color: #8b9dc3;
    --success-color: #81c784;
    --info-color: #64b5f6;
    --warning-color: #ffb74d;
    --danger-color: #e57373;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --sidebar-gradient-1: #667eea;
    --sidebar-gradient-2: #764ba2;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 0;
    padding: 0;
}

/* Sidebar Layout */
.sidebar-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: linear-gradient(135deg, var(--sidebar-gradient-1) 0%, var(--sidebar-gradient-2) 100%);
    color: white;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(102, 126, 234, 0.15);
}

.sidebar.collapsed {
    width: 60px;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar.collapsed .sidebar-header h4 {
    display: none;
}

.sidebar-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav .nav-item {
    margin-bottom: 5px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

.sidebar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-right: 3px solid white;
}

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

.sidebar.collapsed .sidebar-nav .nav-link span {
    display: none;
}

.sidebar.collapsed .sidebar-nav .nav-link {
    justify-content: center;
    padding: 12px 10px;
}

.sidebar-nav .nav-group {
    margin-bottom: 20px;
}

.sidebar-nav .nav-group-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px 5px;
    margin-bottom: 5px;
}

.sidebar.collapsed .nav-group-title {
    display: none;
}

.main-content {
    flex: 1;
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

.main-content.expanded {
    margin-left: 60px;
}

.content-header {
    background: white;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-body {
    padding: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .sidebar-overlay.show {
        display: block;
    }
    
    .mobile-toggle {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1001;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--sidebar-gradient-2) 100%);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-size: 1.2rem;
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    }
}

@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
}

/* Sidebar Footer */
.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.sidebar-footer .powered-by {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.sidebar-footer .powered-by .brand {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.8rem;
}

.sidebar.collapsed .sidebar-footer {
    padding: 10px 5px;
}

.sidebar.collapsed .sidebar-footer .powered-by {
    font-size: 0.6rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

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

.navbar-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
}

/* Kart stilleri */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon i {
    transition: transform 0.3s ease;
}

.card:hover .card-icon i {
    transform: scale(1.1);
}

/* Tablo stilleri */
.table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.table td {
    padding: 12px 15px;
    border-color: #e9ecef;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.08);
}

/* Buton stilleri */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 24px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--sidebar-gradient-2) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #66bb6a 100%);
    color: white;
}

.btn-info {
    background: linear-gradient(135deg, var(--info-color) 0%, #42a5f5 100%);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #ffa726 100%);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #ef5350 100%);
    color: white;
}

.btn-sm {
    padding: 5px 12px;
    font-size: 0.875rem;
}

/* Form stilleri */
.form-control, .form-select {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Alert stilleri */
.alert {
    border-radius: 12px;
    border: none;
    padding: 16px 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    backdrop-filter: blur(10px);
}

.alert-primary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.alert-success {
    background: linear-gradient(135deg, rgba(129, 199, 132, 0.1) 0%, rgba(102, 187, 106, 0.1) 100%);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-info {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(66, 165, 245, 0.1) 100%);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
    color: var(--warning-color);
    border-left: 4px solid var(--warning-color);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(229, 115, 115, 0.1) 0%, rgba(239, 83, 80, 0.1) 100%);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-dismissible .btn-close {
    padding: 0.75rem 1rem;
}

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

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
}

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

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px;
}

/* Jumbotron stilleri */
.jumbotron {
    background: linear-gradient(135deg, var(--sidebar-gradient-1) 0%, var(--sidebar-gradient-2) 100%);
    color: white;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.jumbotron h1 {
    font-weight: 300;
    margin-bottom: 20px;
}

.jumbotron .lead {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Stat kartları */
.stat-card {
    background: linear-gradient(135deg, var(--sidebar-gradient-1) 0%, var(--sidebar-gradient-2) 100%);
    color: white;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sidebar */
.sidebar {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.sidebar .list-group-item {
    border: none;
    padding: 10px 0;
    background-color: transparent;
    border-bottom: 1px solid #e9ecef;
}

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

.sidebar .list-group-item:hover {
    background-color: rgba(102, 126, 234, 0.1);
    padding-left: 10px;
    transition: all 0.3s ease;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 30px;
}

.page-item .page-link {
    border-radius: 5px;
    margin: 0 2px;
    border: 1px solid #dee2e6;
    color: var(--primary-color);
}

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

.page-item .page-link:hover {
    background-color: rgba(102, 126, 234, 0.1);
    border-color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    background-color: white;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Progress bar */
.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 5px;
}

/* Badge */
.badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Footer */
footer {
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 0.875rem;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .stat-card .stat-icon {
        font-size: 2.5rem;
    }
}

/* Loading spinner */
.loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

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

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Print stilleri */
@media print {
    .no-print {
        display: none !important;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .table {
        box-shadow: none;
    }
    
    .btn {
        display: none;
    }
}

/* Yardımcı sınıflar */
.text-currency {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    text-align: right;
}

.bg-light-blue {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(66, 165, 245, 0.1) 100%);
    border-left: 4px solid var(--info-color);
}

.bg-light-green {
    background: linear-gradient(135deg, rgba(129, 199, 132, 0.1) 0%, rgba(102, 187, 106, 0.1) 100%);
    border-left: 4px solid var(--success-color);
}

.bg-light-yellow {
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
    border-left: 4px solid var(--warning-color);
}

.bg-light-red {
    background: linear-gradient(135deg, rgba(229, 115, 115, 0.1) 0%, rgba(239, 83, 80, 0.1) 100%);
    border-left: 4px solid var(--danger-color);
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.08);
}

.shadow-md {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.12);
}

.shadow-lg {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

/* Modern Minimalist Modal Styles */
.minimalist-modal {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: white;
}

.minimalist-modal .modal-header {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 20px;
    border-bottom: none;
    position: relative;
}

.minimalist-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.minimalist-modal .modal-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

.minimalist-modal .btn-close {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.minimalist-modal .btn-close::before {
    content: '✕';
    color: white;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.minimalist-modal .btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.minimalist-modal .btn-close:hover::before {
    color: white;
}

.minimalist-modal .modal-body {
    padding: 20px;
    background: white;
}

.minimalist-modal .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
    display: block;
}

.minimalist-input {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
}

.minimalist-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.minimalist-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

select.minimalist-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230d6efd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
}

textarea.minimalist-input {
    resize: vertical;
    min-height: 60px;
}

.minimalist-modal .modal-footer {
    background: #f8f9fa;
    padding: 16px 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.minimalist-btn {
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.minimalist-btn.btn-light {
    background-color: #ffffff;
    color: var(--secondary-color);
    border: 2px solid #e9ecef;
}

.minimalist-btn.btn-light:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.minimalist-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--sidebar-gradient-2) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.minimalist-btn.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Input Groups */
.minimalist-modal .row.g-3 > div {
    margin-bottom: 8px;
}

.minimalist-modal .row.g-3 {
    row-gap: 12px !important;
}

/* Modal backdrop blur effect */
.modal-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Smooth modal animations */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Account Search Styles */
.minimalist-modal .input-group {
    position: relative;
}

.minimalist-modal .col-md-6:has(.input-group),
.minimalist-modal .col-12:has(.input-group) {
    position: relative;
}

.minimalist-modal .input-group .minimalist-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.minimalist-modal .input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 2px solid #e9ecef;
    border-left: none;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.minimalist-modal .input-group .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.account-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 42px;
    background: white;
    border: 2px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.account-search-results.show {
    display: block !important;
}

.account-search-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
}

.account-search-item:last-child {
    border-bottom: none;
}

.account-search-item:hover {
    background-color: #f8f9fa;
}

.account-search-item.active {
    background-color: var(--primary-color);
    color: white;
}

.account-code {
    font-weight: 600;
    color: var(--primary-color);
}

.account-search-item.active .account-code {
    color: white;
}

.account-name {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 8px;
}

.account-search-item.active .account-name {
    color: rgba(255, 255, 255, 0.8);
}

/* Account Info Card Styles */
.account-info-card {
    margin-top: 12px;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account-info-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.account-info-code {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.account-info-name {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

.account-info-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(var(--primary-color), 0.05);
    border-radius: 8px;
}

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

.balance-amount {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.balance-amount.positive {
    color: var(--success-color);
}

.balance-amount.negative {
    color: var(--danger-color);
}

.balance-amount.zero {
    color: #6c757d;
}

.account-movements {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.movement-debit,
.movement-credit {
    flex: 1;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    text-align: center;
}

.movement-debit {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
}

.movement-credit {
    background: rgba(25, 135, 84, 0.1);
    color: var(--success-color);
}

.debit-amount,
.credit-amount {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Delete Modal Styles */
.delete-modal .modal-header.delete-header {
    background-color: var(--danger-color);
    color: white;
}

.delete-modal .btn-close::before {
    color: white;
}

.delete-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-icon i {
    font-size: 24px;
    color: var(--danger-color);
}

.delete-message {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
}

.record-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
}

.minimalist-btn.btn-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #ef5350 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(229, 115, 115, 0.3);
}

.minimalist-btn.btn-danger:hover {
    background: linear-gradient(135deg, #e53e3e 0%, #e53935 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 115, 115, 0.4);
}

/* Edit Modal Additional Styles */
.minimalist-modal .modal-dialog.modal-sm {
    max-width: 400px;
}