.border-radius-20 {
    border-radius: 20px !important;
}

.white-tab {
    background-color: transparent;
    border: none;
    color: #000;
    width: 98%;
}
.white-tab:hover {
    background-color: white;
    border: none;
    color: #000;
}
.white-tab.active {
    background-color: white;
    border: none;
    color: #000;
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}
.accordion-button:not(.collapsed).accordion-button::after {
    color: white;
}
.accordion-button:focus {
    box-shadow: none;
}
.btn.show {
    background-color: var(--primary);
    color: white;
}
.dropdown-item:focus {
    background-color: var(--primary);
    color: white;
}
.form-check-label {
    cursor: pointer;
}

.form-check-input:checked + .form-check-label .fas {
    color: #0d6efd !important;
}

.btn-group-vertical .btn {
    border-radius: 0.375rem !important;
    margin-bottom: 2px;
}

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

/* Alert positioning fix */
.alert.position-fixed {
    z-index: 10000;
}

/* Park Marker Styles */
.park-marker {
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: bottom center;
}

.park-marker:hover {
    transform: scale(1.1);
    z-index: 20 !important;
}

.marker-pin {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-icon {
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    position: relative;
}

.marker-icon i {
    transform: rotate(45deg);
    font-size: 16px;
}

.marker-icon::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: inherit;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
}

.marker-tooltip {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.marker-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.park-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
    top: -70px;
}

/* Pulse animation for markers */
@keyframes markerPulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 112, 6, 0.4);
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(255, 112, 6, 0.4);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 112, 6, 0.4);
    }
}

.park-marker .marker-icon {
    animation: markerPulse 2s infinite;
}

/* Click effect */
.park-marker:active {
    transform: scale(0.95);
}

/* Selected marker style */
.park-marker.selected .marker-icon {
    background-color: #007bff !important;
    animation: markerPulse 1s infinite;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.6), 0 0 0 0 rgba(0, 123, 255, 0.4);
}

.park-marker.selected .marker-tooltip {
    opacity: 1;
    visibility: visible;
    top: -70px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-group-vertical {
        flex-direction: row !important;
    }

    .btn-group-vertical .btn {
        margin-bottom: 0;
        margin-right: 2px;
    }

    .marker-icon {
        width: 35px;
        height: 35px;
    }

    .marker-icon i {
        font-size: 14px;
    }

    .marker-tooltip {
        font-size: 11px;
        padding: 6px 10px;
    }
}
@media (min-width:1900px) {
    .custom-svg-style-1 {
        left: 65%;
    }
}

/* Google Maps Custom Styles */
#googleMap {
    background-color: #f5f5f5;
}

/* Custom info window styles */
.gm-style .gm-style-iw-c {
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.gm-style .gm-style-iw-d {
    padding: 12px !important;
}

/* Custom marker cluster styles (if needed later) */
.marker-cluster {
    background-color: rgba(0, 123, 255, 0.6);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Loading spinner for map */
.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.map-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Map controls styling */
.gm-style .gm-style-iw-tc::after {
    background: linear-gradient(45deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 51%, rgba(255,255,255,0) 100%);
}

/* Enhanced marker animations */
@keyframes markerDrop {
    0% {
        transform: translateY(-500px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.marker-drop {
    animation: markerDrop 0.6s ease-out;
}

/* Responsive map adjustments */
@media (max-width: 768px) {
    #googleMap {
        height: 400px !important;
    }
}

@media (max-width: 576px) {
    #googleMap {
        height: 350px !important;
    }
}

/* Google Maps Info Window Button Fix */
.gm-style .gm-style-iw-c button.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.gm-style .gm-style-iw-c button.btn-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    filter: brightness(1.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3) !important;
    transition: all 0.2s ease !important;
}

/* App Store and Google Play button hover effects */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.transition-all-300 {
    transition: all 0.3s ease;
}

/* Enhanced app download buttons in hero section */
.btn-dark {
    background-color: #2c3e50 !important;
    border-color: #2c3e50 !important;
    transition: all 0.3s ease !important;
}

.btn-dark:hover {
    background-color: #34495e !important;
    border-color: #34495e !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Footer app buttons styling */
footer .hover-scale:hover {
    transform: translateY(-2px);
}

/* App store icons styling */
.app-store-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.app-store-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-store-icon img {
    display: block;
}

/* Hero section app store icons */
.main .app-store-icon {
    background-color: rgba(255, 255, 255, 0.9);
}

.main .app-store-icon:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Footer app store icons */
footer .app-store-icon {
    background-color: rgba(0, 0, 0, 0.05);
}

footer .app-store-icon:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Phone image styling */
.custom-img-1 {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* Responsive phone image */
@media (max-width: 768px) {
    .custom-img-1 {
        max-height: 500px;
    }
}

@media (max-width: 576px) {
    .custom-img-1 {
        max-height: 480px;
    }
}

/* Ev Sahibi Paneli - Otopark Ekleme Formu Stilleri */
.border-dashed {
    border-style: dashed !important;
}

.border-2 {
    border-width: 2px !important;
}

.image-upload-area {
    border-color: #dee2e6 !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-upload-area:hover {
    border-color: #007bff !important;
    background-color: #f8f9fa !important;
}

.image-upload-area.dragover {
    border-color: #007bff !important;
    background-color: #e3f2fd !important;
}

/* Form section headers */
.form-section-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Modal enhancements */
.modal-lg {
    max-width: 900px;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Form controls styling */
.form-control-modern {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.15s ease-in-out;
}

.form-control-modern:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Map placeholder styling */
.map-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map-placeholder i {
    opacity: 0.6;
}

/* Availability section styling */
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.day-availability {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.day-availability:hover {
    background-color: #e9ecef;
}

/* Image preview styling */
.image-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.image-preview-item:hover {
    transform: scale(1.02);
}

.image-preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.image-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(220, 53, 69, 0.9);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.image-remove-btn:hover {
    background-color: rgba(220, 53, 69, 1);
}

/* Loading states */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success and error states */
.form-control.is-valid {
    border-color: #28a745;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #28a745;
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-lg {
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .availability-grid {
        grid-template-columns: 1fr;
    }
    
    .image-preview-item img {
        height: 80px;
    }
}

/* Enhanced button styling */
.btn-rounded {
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Dashboard card enhancements */
.dashboard-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dashboard-card .card-body {
    padding: 2rem 1.5rem;
}

/* Statistics icons */
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.5rem;
}

.stat-icon.primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

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

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

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

/* Activity list styling */
.activity-item {
    transition: background-color 0.2s ease;
    border-left: 3px solid transparent;
}

.activity-item:hover {
    background-color: #f8f9fa;
    border-left-color: #007bff;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Quick actions styling */
.quick-action-btn {
    height: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.quick-action-btn i {
    font-size: 1.5rem;
}

/* Toast notification styling */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.toast {
    min-width: 300px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.toast.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.toast.warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

/* Form validation animations */
.form-control-modern {
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-modern:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control-modern.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control-modern.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Cüzdan Sayfası Özel Stilleri */
.wallet-balance-card {
    background: linear-gradient(135deg, #082a3d 0%, #082a3d 100%);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(8, 42, 61, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallet-balance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(8, 42, 61, 0.4);
}

/* Mevcut bakiye kartındaki metinleri beyaz yap */
.wallet-balance-card h1,
.wallet-balance-card h2,
.wallet-balance-card h3,
.wallet-balance-card h4,
.wallet-balance-card h5,
.wallet-balance-card h6,
.wallet-balance-card p,
.wallet-balance-card span {
    color: #ffffff !important;
}

.wallet-balance-card .text-white {
    color: #ffffff !important;
}

.wallet-balance-card .btn-outline-light {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.wallet-balance-card .btn-outline-light:hover {
    background-color: #ffffff !important;
    color: #082a3d !important;
}

.wallet-stat-card {
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    background: white;
}

.wallet-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

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

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

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

.wallet-table {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.wallet-table .thead-dark {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
}

.wallet-table .table-hover tbody tr:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.wallet-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.875rem;
}

.wallet-amount {
    font-weight: 600;
    font-size: 1.1rem;
}

.wallet-loading {
    opacity: 0.7;
    pointer-events: none;
}

.wallet-refresh-btn {
    transition: all 0.3s ease;
}

.wallet-refresh-btn:hover {
    transform: rotate(180deg);
}

.wallet-refresh-btn.fa-spin {
    animation: spin 1s linear infinite;
}

/* Responsive adjustments for wallet page */
@media (max-width: 768px) {
    .wallet-balance-card .card-body {
        padding: 2rem 1rem !important;
    }
    
    .wallet-balance-card h1 {
        font-size: 2rem !important;
    }
    
    .wallet-stat-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .wallet-stat-card i {
        font-size: 2rem !important;
    }
    
    .wallet-table {
        font-size: 0.875rem;
    }
    
    .wallet-badge {
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .wallet-balance-card .row {
        text-align: center !important;
    }
    
    .wallet-balance-card .col-md-4 {
        margin-top: 1rem;
    }
    
    .wallet-stat-card {
        margin-bottom: 1rem;
    }
    
    .wallet-table .table {
        font-size: 0.8rem;
    }
    
    .wallet-table .d-none.d-md-table-cell {
        display: none !important;
    }
}

/* Cüzdan filtreleri için özel stiller */
.wallet-filters {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.wallet-filters .form-control {
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    background: white;
}

.wallet-filters .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* İşlem geçmişi tablosu için hover efektleri */
.transaction-row {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.transaction-row:hover {
    background-color: #f8f9fa !important;
    border-left-color: #007bff;
    transform: translateX(3px);
}

.transaction-row .badge {
    transition: transform 0.2s ease;
}

.transaction-row:hover .badge {
    transform: scale(1.05);
}

/* Boş durum için stiller */
.empty-state {
    padding: 3rem 2rem;
    text-align: center;
    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 {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Hata durumu için stiller */
.error-state {
    padding: 3rem 2rem;
    text-align: center;
    color: #dc3545;
}

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

.error-state h5 {
    color: #721c24;
    margin-bottom: 1rem;
}

.error-state .btn {
    margin-top: 1rem;
}

/* Loading spinner için özel stiller */
.wallet-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #f8f9fa;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.wallet-spinner-lg {
    width: 2rem;
    height: 2rem;
    border-width: 3px;
    border-top-width: 3px;
}

/* Başarı ve hata mesajları için toast stilleri */
.wallet-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    min-width: 300px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
}

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

.wallet-toast.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.wallet-toast.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.wallet-toast.warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

/* Ev Sahibi Paneli - Responsive İyileştirmeler */
@media (max-width: 992px) {
    /* Otopark listesi responsive */
    .table-responsive {
        border-radius: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Modal boyutları */
    .modal-lg {
        max-width: 95%;
        margin: 10px auto;
    }
    
    /* Form grid düzenlemeleri */
    .availability-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    /* Buton grupları */
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        border-radius: 0.375rem !important;
        margin-bottom: 0.25rem;
    }
    
    .btn-group .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    /* Genel mobil düzenlemeler */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Header mobil uyumluluğu */
    .header-body {
        padding: 0.5rem 0;
    }
    
    .header-logo img {
        width: 100px !important;
        height: 100px !important;
    }
    
    /* Otopark listesi mobil */
    .table th, .table td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .table th:nth-child(n+4),
    .table td:nth-child(n+4) {
        display: none;
    }
    
    /* Otopark kartları mobil */
    .parking-card-mobile {
        border: 1px solid #dee2e6;
        border-radius: 0.5rem;
        padding: 1rem;
        margin-bottom: 1rem;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Form mobil uyumluluğu */
    .form-control-modern {
        font-size: 16px; /* iOS zoom engelleme */
        padding: 0.75rem;
    }
    
    .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    /* Modal mobil */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Harita mobil */
    #parkingLocationMap,
    #editParkingLocationMap {
        height: 250px !important;
    }
    
    /* Filtreleme mobil */
    .card .card-body {
        padding: 1rem;
    }
    
    .input-group {
        flex-direction: row;
    }
    .download-icons {
        justify-content: center;
    }
    
    .input-group .form-control {
        border-radius: 0.375rem !important;
    }
    
    .input-group .btn {
        border-radius: 0.375rem !important;
        width: 100%;
    }
    
    /* Butonlar mobil */
    .btn-rounded {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    /* İstatistik kartları mobil */
    .dashboard-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Empty state mobil */
    .empty-state {
        padding: 2rem 1rem;
    }
    
    .empty-state i {
        font-size: 3rem;
    }
    
    /* Cüzdan mobil */
    .wallet-balance-card .card-body {
        padding: 1.5rem 1rem !important;
    }
    
    .wallet-balance-card h1 {
        font-size: 1.75rem !important;
    }
    
    .wallet-stat-card {
        margin-bottom: 1rem;
    }
    
    .wallet-table {
        font-size: 0.875rem;
    }
    
    /* Rezervasyon mobil */
    .reservation-card {
        margin-bottom: 1rem;
        border-radius: 0.5rem;
    }
    
    .reservation-status {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 576px) {
    /* Extra küçük ekranlar */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Table mobil görünümü */
    .table-responsive {
        border: none;
        box-shadow: none;
    }
    
    .table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Kart tabanlı mobil görünüm */
    .mobile-parking-list {
        display: block;
    }
    
    .mobile-parking-item {
        background: white;
        border-radius: 0.75rem;
        padding: 1.25rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
    }
    
    .mobile-parking-item:active {
        transform: scale(0.98);
    }
    
    .mobile-parking-header {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .mobile-parking-image {
        width: 60px;
        height: 60px;
        border-radius: 0.5rem;
        object-fit: cover;
        margin-right: 1rem;
    }
    
    .mobile-parking-title {
        flex: 1;
        font-size: 1.1rem;
        font-weight: 600;
        color: #212529;
        margin: 0;
    }
    
    .mobile-parking-status {
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    .mobile-parking-details {
        margin-bottom: 1rem;
    }
    
    .mobile-parking-detail-item {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    .mobile-parking-detail-item i {
        width: 20px;
        margin-right: 0.5rem;
        color: #007bff;
    }
    
    .mobile-parking-actions {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .mobile-parking-actions .btn {
        flex: 1;
        min-width: 80px;
        font-size: 0.875rem;
        padding: 0.5rem;
    }
    
    /* Form mobil iyileştirmeleri */
    .modal-dialog {
        margin: 0.25rem;
    }
    
    .modal-body {
        padding: 0.75rem;
        max-height: 85vh;
    }
    
    .form-section-header {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Harita mobil */
    #parkingLocationMap,
    #editParkingLocationMap {
        height: 200px !important;
    }
    
    /* Butonlar mobil */
    .btn-rounded {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Input grupları mobil */
    .input-group .btn {
        margin-top: 0.25rem;
    }
    
    /* Cüzdan mobil */
    .wallet-balance-card h1 {
        font-size: 1.5rem !important;
    }
    
    .wallet-stat-card .card-body {
        padding: 1rem 0.75rem;
    }
    
    .wallet-table {
        font-size: 0.8rem;
    }
    
    .wallet-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
    
    /* Navigation mobil */
    .header-nav-main {
        background: white;
        border-top: 1px solid #dee2e6;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0.5rem 0;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .header-nav-main.show {
        transform: translateY(0);
    }
    
    .header-nav-main .nav {
        flex-direction: row;
        justify-content: space-around;
        padding: 0;
    }
    
    .header-nav-main .nav-pills .nav-link {
        padding: 0.5rem;
        font-size: 0.75rem;
        text-align: center;
        border-radius: 0;
    }
    
    .header-nav-main .nav-pills .nav-link i {
        display: block;
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn, .form-control, .card {
        min-height: 44px; /* iOS touch target minimum */
    }
    
    .mobile-parking-item {
        min-height: 60px;
        padding: 1.25rem;
    }
    
    .btn-group .btn {
        min-height: 44px;
        padding: 0.75rem;
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-body {
        max-height: 70vh;
    }
    
    #parkingLocationMap,
    #editParkingLocationMap {
        height: 180px !important;
    }
    
    .header-nav-main {
        padding: 0.25rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn-rounded {
        border-width: 0.5px;
    }
    
    .form-control-modern {
        border-width: 0.5px;
    }
    
    .card {
        border-width: 0.5px;
    }
}

/* Dark mode support (hazırlık) */
@media (prefers-color-scheme: dark) {
    .mobile-parking-item {
        background: #2c3e50;
        border-color: #495057;
        color: #ffffff;
    }
    
    .mobile-parking-title {
        color: #ffffff;
    }
    
    .mobile-parking-detail-item {
        color: #adb5bd;
    }
    
    .mobile-parking-detail-item i {
        color: #0d6efd;
    }
}

/* Print styles */
@media print {
    .header-nav-features,
    .btn-group,
    .modal,
    .toast-container {
        display: none !important;
    }
    
    .mobile-parking-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .table {
        font-size: 0.75rem;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* Performance optimizations */
.parking-list-container {
    contain: layout style paint;
}

.mobile-parking-list {
    contain: layout style paint;
}

.image-preview-item {
    contain: layout style paint;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.btn:focus,
.form-control:focus,
.mobile-parking-item:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Loading states için mobil optimizasyon */
@media (max-width: 768px) {
    .spinner-border {
        width: 2rem;
        height: 2rem;
        border-width: 0.2rem;
    }
    
    .wallet-spinner {
        width: 1.5rem;
        height: 1.5rem;
        border-width: 0.15rem;
    }
}

/* Modal backdrop mobil iyileştirme */
@media (max-width: 576px) {
    .modal-backdrop {
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    .modal {
        padding: 0 !important;
    }
    
    .modal-dialog {
        margin: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 1rem 1rem 0 0;
    }
}

/* IBAN Kartları Özel Stilleri */
.wallet-iban-section {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #082a3d 0%, #0a3349 100%);
}

.wallet-iban-section .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-iban-section .card-header h6 {
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.wallet-iban-section .btn-primary {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    transition: all 0.3s ease;
    background: rgba(0, 123, 255, 0.8);
    border-color: rgba(0, 123, 255, 0.8);
}

.wallet-iban-section .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    background: rgba(0, 123, 255, 1);
    border-color: rgba(0, 123, 255, 1);
}

.wallet-iban-section .btn-primary:active {
    transform: translateY(0);
}

.iban-card {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.iban-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iban-card:hover::before {
    opacity: 1;
}

.iban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.iban-card-item {
    transition: all 0.3s ease;
}

.iban-card-item:hover {
    transform: translateX(3px);
}

.iban-card-item:active {
    transform: translateX(1px) translateY(-1px);
}

.iban-bank-info {
    flex: 1;
}

.iban-bank-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    color: #ffffff;
}

.iban-card:hover .iban-bank-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.iban-edit-hint {
    transition: all 0.3s ease;
    opacity: 0.6;
}

.iban-card:hover .iban-edit-hint {
    opacity: 1;
    transform: scale(1.1);
}

.bank-name {
    font-size: 0.65rem;
    text-transform: capitalize;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.iban-number {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.4rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.25rem;
}

.iban-card h6 {
    color: #ffffff !important;
    font-size: 0.8rem;
    font-weight: 600;
}

.iban-card small.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.iban-card small.text-info {
    color: rgba(173, 216, 230, 0.9) !important;
    font-size: 0.65rem;
    transition: all 0.3s ease;
}

.iban-card:hover small.text-info {
    color: rgba(255, 255, 255, 1) !important;
}

/* IBAN Modal Stilleri */
#ibanModal .modal-dialog {
    max-width: 500px;
}

#ibanModal .modal-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-bottom: none;
}

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

#ibanModal .btn-close {
    filter: brightness(0) invert(1);
}

#ibanModal .form-control-modern {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#ibanModal .form-control-modern:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    transform: translateY(-1px);
}

#ibanModal .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

#ibanModal .text-muted {
    font-size: 0.875rem;
    color: #6c757d;
}

#ibanValidation .text-success {
    color: #28a745 !important;
    font-weight: 500;
    font-size: 0.875rem;
}

#ibanValidation .text-danger {
    color: #dc3545 !important;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Delete IBAN Modal Stilleri */
#deleteIbanModal .modal-header {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
    border-bottom: none;
}

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

#deleteIbanModal .btn-close {
    filter: brightness(0) invert(1);
}

/* IBAN Validasyon Animasyonları */
@keyframes ibanValidationSuccess {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ibanValidationError {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#ibanValidation .text-success {
    animation: ibanValidationSuccess 0.3s ease;
}

#ibanValidation .text-danger {
    animation: ibanValidationError 0.3s ease;
}

/* IBAN Kartları Responsive */
@media (max-width: 768px) {
    .iban-card .card-body {
        padding: 1rem;
    }
    
    .iban-bank-icon {
        width: 40px;
        height: 40px;
    }
    
    .iban-bank-icon i {
        font-size: 1.25rem;
    }
    
    .iban-number {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .iban-card h6 {
        font-size: 0.9rem;
    }
    
    .wallet-iban-section .card-header {
        padding: 1rem;
    }
    
    .wallet-iban-section .card-header h6 {
        font-size: 1rem;
    }
    
    .wallet-iban-section .btn-primary {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }
    
    .iban-edit-hint {
        opacity: 1;
    }
    
    .iban-card small.text-info {
        display: block;
        margin-top: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .iban-card .card-body {
        padding: 0.75rem;
    }
    
    .iban-bank-icon {
        width: 35px;
        height: 35px;
    }
    
    .iban-bank-icon i {
        font-size: 1rem;
    }
    
    .iban-number {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    .iban-card h6 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .wallet-iban-section .card-header .row {
        text-align: center !important;
    }
    
    .wallet-iban-section .card-header .col-12 {
        margin-bottom: 1rem;
    }
    
    .wallet-iban-section .btn-primary {
        width: 100%;
        padding: 0.5rem 1rem;
        margin-top: 0.5rem;
    }
    
    .iban-card-item {
        margin-bottom: 1rem;
    }
    
    .iban-edit-hint {
        display: none;
    }
    
    .iban-card small.text-info {
        font-size: 0.6rem;
        margin-top: 0.75rem;
    }
}

/* IBAN Loading State */
.iban-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.iban-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* IBAN Success/Error States */
.iban-card.success {
    border-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.iban-card.error {
    border-color: #dc3545;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
}

/* IBAN Kart Hover Efektleri */
.iban-card {
    cursor: pointer;
}

.iban-card:active {
    transform: translateY(-2px);
}

/* Form Validation States */
#ibanForm .form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

#ibanForm .form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

/* IBAN Input Focus Effects */
#ibanNumber:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* IBAN Section Empty State */
.wallet-iban-section .empty-state {
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.wallet-iban-section .empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.7);
}

.wallet-iban-section .empty-state h5 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.wallet-iban-section .empty-state h6 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.wallet-iban-section .empty-state p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.wallet-iban-section .empty-state .btn {
    margin-top: 1rem;
}

.wallet-iban-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Page Header padding ve margin düzenlemeleri */
.page-header {
    margin: 0 0 15px 0 !important;
}