
        /* Styling Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            z-index: 1000;
        }

        /* Floating Notification */
        .floating-alert {
            position: fixed;
            top: 85px; /* Berada tepat di bawah header */
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            background-color: #fff;
            padding: 15px;
            border-left: 5px solid #FFBD00;
            border-radius: 8px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        


        /* Close Button */
        .close-alert {
            background: none;
            border: none;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            color: #000;
        }

        .close-alert:hover {
            color: red;
        }

        /* Responsiveness */
        @media (max-width: 768px) {
            .floating-alert {
                top: 70px;
                width: 95%;
                font-size: 14px;
                padding: 10px;
            }
        }
        
        .alert-success {
    color: #7b838a;
    background-color: #fff;
    border-color: #FFBD00;
}

/* Tambahkan CSS ini */
.mobile-break {
    display: none; /* Default: tidak tampil */
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
        width: 100%;
        height: 130px; /* Beri jarak 10px, bisa diubah */
    }
}

        @media (max-width: 768px) {
    .floating-alert {
        top: 75px;
        width: 95%;
        font-size: 14px;
        padding: 10px;
    }
}

.alert {
    background-color: #d9edf7; /* Warna biru muda */
    color: #31708f; /* Warna teks */
    border: 1px solid #bce8f1; /* Border */
    padding: 15px;
    font-size: 14px;
    border-radius: 5px;
}

.btn-light {
    border: 1px solid #ccc;
    text-align: center;
    font-size: 12px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}
