/* ============================================
   MAIN STYLESHEET - style.css
   Gabungan semua CSS tanpa duplikasi
   ============================================ */

/* --------------------------------------------
   RESET & VARIABLES
-------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4e73df;
    --secondary-color: #1cc88a;
    --dark-color: #5a5c69;
    --light-bg: #f8f9fc;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
    --text-dark: #1a1f36;
    --text-gray: #6b7280;
    --text-light: #858796;
    --border-light: #e3e6f0;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------
   BASE STYLES
-------------------------------------------- */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin-bottom: 100px;
    min-height: 100vh;
    background: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------------------------------
   TYPOGRAPHY
-------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* --------------------------------------------
   BUTTONS
-------------------------------------------- */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-login {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 25px !important;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: #224abe;
    transform: translateY(-2px);
    color: white !important;
}

.btn-register {
    background: transparent;
    color: var(--primary-color) !important;
    padding: 8px 25px !important;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    margin-left: 10px;
    display: inline-block;
}

.btn-register:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: white;
    color: var(--gradient-start);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--gradient-start);
    transform: translateY(-3px);
}

.btn-order {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-order:hover {
    background: #224abe;
    transform: translateY(-2px);
    color: white;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #224abe;
    transform: translateY(-2px);
}

/* --------------------------------------------
   NAVBAR
-------------------------------------------- */
.navbar {
    background: white !important;
    /* box-shadow: var(--shadow-sm); */
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    text-align:center;
    color: var(--primary-color) !important;
    font-size: 24px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* --------------------------------------------
   DROPDOWN
-------------------------------------------- */
.user-dropdown .dropdown-toggle {
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    border: none;
}

.user-dropdown .dropdown-toggle:hover {
    background: #224abe;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
}

/* --------------------------------------------
   FOOTER
-------------------------------------------- */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}


/* --------------------------------------------
   STATS CARDS
-------------------------------------------- */
.stat-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 24px;
}

.stat-card h3 {
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
}

.stat-card .number {
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

/* --------------------------------------------
   FLOATING NAVIGATION
-------------------------------------------- */
.floating-top-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    z-index: 9999;
    padding: 8px;
    backdrop-filter: blur(10px);
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.5s ease-out;
}

.top-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50px;
}

.top-nav-container .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 60px;
}

.top-nav-container .nav-item i {
    font-size: 18px;
    margin-bottom: 4px;
}

.top-nav-container .nav-item div {
    font-size: 12px;
    font-weight: 500;
}

.top-nav-container .nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.top-nav-container .nav-item.active {
    background: linear-gradient(135deg, #d4af37, #e5c158);
    color: #1d5c3a;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* --------------------------------------------
   FORMS
-------------------------------------------- */
.login-container {
    max-width: 450px;
    width: 100%;
}

.login-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

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

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bdc3c7;
    z-index: 1;
}

.form-control {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bdc3c7;
    cursor: pointer;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-link {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-google {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--dark-color);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-google:hover {
    background: #f8f9fc;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-google i {
    color: #db4437;
    font-size: 18px;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light);
    z-index: 1;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.register-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* --------------------------------------------
   TABLES
-------------------------------------------- */
.table-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.table-header h2 {
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-custom {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table-custom thead {
    background: var(--primary-color);
    color: white;
}

.table-custom th {
    font-weight: 500;
    border: none;
    padding: 12px;
}

.table-custom td {
    vertical-align: middle;
    padding: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 12px;
    color: #999;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

td {
    padding: 12px;
    color: #333;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

/* --------------------------------------------
   BADGES & STATUS
-------------------------------------------- */
.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    display: inline-block;
}

.badge-info {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-pending {
    background: #fff3cd;
    color: #856404;
    padding: 5px 10px;
    border-radius: 50px;
}

.badge-paid {
    background: #d4edda;
    color: #155724;
    padding: 5px 10px;
    border-radius: 50px;
}

.badge-processing {
    background: #cce5ff;
    color: #004085;
    padding: 5px 10px;
    border-radius: 50px;
}

.badge-completed {
    background: #d1ecf1;
    color: #0c5460;
    padding: 5px 10px;
    border-radius: 50px;
}

.badge-cancelled {
    background: #f8d7da;
    color: #721c24;
    padding: 5px 10px;
    border-radius: 50px;
}

/* --------------------------------------------
   PAGINATION
-------------------------------------------- */
.pagination {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination button {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    color: var(--gradient-start);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.pagination .page-link {
    color: var(--primary-color);
    border: none;
    margin: 0 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

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

/* --------------------------------------------
   CHARTS & SUMMARY
-------------------------------------------- */
.charts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.chart-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.chart-card h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-card canvas {
    width: 100%;
    height: 250px;
}

.summary-card {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    color: white;
    display: none;
}

.summary-card.active {
    display: block;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.summary-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
}

.summary-item .label {
    font-size: 11px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.summary-item .value {
    font-size: 20px;
    font-weight: 600;
}

/* --------------------------------------------
   SEARCH SECTION
-------------------------------------------- */
.search-section {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.search-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #333;
}

.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input-group {
    flex: 2;
    min-width: 250px;
}

.search-input-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

.search-input-group input,
.search-input-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-input-group input:focus,
.search-input-group select:focus {
    outline: none;
    border-color: var(--gradient-start);
}

/* --------------------------------------------
   LOADING & ALERTS
-------------------------------------------- */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.loading {
    text-align: center;
    color: white;
    padding: 40px;
}

.error {
    background: #f44336;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
}

.success-message {
    background: #48bb78;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
}

.alert {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* --------------------------------------------
   MODAL
-------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* --------------------------------------------
   UTILITIES
-------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.welcome-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.date-badge {
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gradient-start);
    display: inline-block;
    margin-top: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.approval-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.approval-image:hover {
    transform: scale(1.1);
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* --------------------------------------------
   RESPONSIVE
-------------------------------------------- */
@media (max-width: 1024px) {
    .card-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .navbar-brand { font-size: 20px;  text-align:center;}

    .btn-login,
    .btn-register {
        padding: 5px 15px !important;
        font-size: 14px;
    }

    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 14px; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 200px; text-align: center; }

    .card { padding: 1.25rem; }
    .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; gap: 1rem; }
    .card-grid-auto { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .charts-container { grid-template-columns: 1fr; }
    .summary-stats { grid-template-columns: repeat(2, 1fr); }

    .search-box { flex-wrap: nowrap; }

    .floating-top-nav {
        bottom: 10px;
        padding: 5px;
        width: 95%;
        max-width: 98%;
    }

    .top-nav-container {
        gap: 2px;
        width: 100%;
    }

    .top-nav-container .nav-item {
        padding: 6px 10px;
        min-width: 45px;
        flex: 1;
    }

    .top-nav-container .nav-item i { font-size: 16px; margin-bottom: 2px; }
    .top-nav-container .nav-item div { font-size: 10px; }
}

@media (max-width: 480px) {
    .logo span { display: none; }
    .stat-card .number { font-size: 22px; }
    .search-box { flex-direction: column; }
    .btn { width: 100%; }

    .floating-top-nav {
        width: 98%;
        max-width: 95%;
        padding: 4px;
    }

    .top-nav-container .nav-item {
        padding: 5px 6px;
        flex: 1;
    }

    .top-nav-container .nav-item i { font-size: 14px; }
    .top-nav-container .nav-item div { font-size: 9px; }
}
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 kolom */
    gap: 16px;
}

/* Tablet & Desktop: 3 kolom */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
/* Mobile First - perbaikan padding */
@media (max-width: 767.98px) {
    /* Container padding lebih kecil */
    .container.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Card body padding lebih proporsional */
    .card-transparent .card-body {
        padding: 1.25rem !important;
    }

    /* Form group spacing */
    #profileForm .mb-3 {
        margin-bottom: 1.25rem !important;
    }

    /* Label lebih kecil dan rapat */
    #profileForm .form-label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    /* Input field lebih nyaman di mobile */
    #profileForm .form-control {
        font-size: 16px; /* Mencegah zoom otomatis di iOS */
        padding: 10px 12px;
        height: auto;
        border-radius: 8px;
    }

    /* Tombol full width di mobile */
    #profileForm .btn-primary {
        width: 100%;
        padding: 12px;
        margin-top: 0.5rem;
        font-size: 1rem;
    }

    /* Avatar lebih kecil di mobile */
    .position-relative img.rounded-circle,
    .position-relative i.fa-user-circle {
        width: 120px !important;
        height: 120px !important;
        font-size: 120px !important;
    }

    /* Tombol upload avatar */
    .btn-upload {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px;
    }

    /* Row spacing */
    .row {
        row-gap: 1.25rem;
    }

    /* Kolom di mobile tidak perlu padding horizontal berlebih */
    .col-md-4, .col-md-8 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Tablet (medium devices) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container.py-5 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .card-transparent .card-body {
        padding: 1.5rem !important;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .card-transparent .card-body {
        padding: 1.75rem !important;
    }
}
.navbar .container {
    display: flex !important;
    justify-content: center !important;
}

.navbar-brand {
    margin: 0 auto !important;
    float: none !important;
    text-align: center !important;
}