body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 8px;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

.nav-btn {
    padding: 6px 12px;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
    color: #64748b;
}

.nav-btn.active {
    background: white;
    color: #2563eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 7px;
    color: white;
    padding: 1px 4px;
    border-radius: 6px;
    min-width: 14px;
    text-align: center;
    z-index: 10;
}


.card {
    background: white;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.card-cekim {
    border-left: 3px solid #ef4444;
}

/* Swipe İşlemleri */
.swipe-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 8px;
    background: #f8fafc;
}

.swipe-actions {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
}

.swipe-actions button {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.swipe-content {
    position: relative;
    z-index: 10;
    background: white;
    transition: transform 0.3s ease-out;
    width: 100%;
}

/* Modal Özel CSS */
#modal-overlay {
    backdrop-filter: blur(2px);
}