/* Import Bootstrap */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}

#bg-index1 {
    font-size: 14px;
    background-image: url('../images/bg-gold.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #000;
}

/*Untuk padding Navbar*/
.navbar {
    padding-left: 20px;
    padding-right: 20px;
}


.table {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-success {
    background-color: #d4edda !important;
    color: #155724 !important;
}

th, td {
    text-align: center;
    vertical-align: middle !important;
}

h5 {
    color: #1c6e27;
    font-weight: bold;
}

.buyback-header {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.buyback-header h4 {
    color: #dc3545;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;  /* Mengaktifkan scroll horizontal */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling di iOS */
    }
    table {
        min-width: 700px; /* Mencegah tabel terlalu kecil di layar sempit */
    }
}

