/* tambak.css */
:root {
    --glass: rgba(255, 255, 255, 0.8);
    --primary-blue: #0d6efd;
    --fuzzy-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    background: #f4f7f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.fuzzy-box {
    background: var(--fuzzy-gradient);
}

.navbar {
    border-bottom: 3px solid rgba(0,0,0,0.1);
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.table-responsive {
    scrollbar-width: thin;
}

#qrcode img {
    margin: 0 auto;
}

/* Responsivitas untuk layar kecil */
@media (max-width: 991.98px) {
    .col-lg-4 {
        margin-bottom: 1.5rem;
    }
}