body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
}

.ammo-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ammo-card:hover {
    border-color: #475569;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.25);
    background-color: #243147;
}

.id-badge {
    background-color: #334155;
    color: #94a3b8;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.filter-btn {
    transition: all 0.2s;
}

.filter-btn:active {
    transform: scale(0.95);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
