        footer {
            background-color: rgb(10, 97, 190);
            color: white;
            text-align: center;
            padding: 10px;
            margin-top: auto;
        }

        .logo {
            max-height: 40px;
            width: auto;
            object-fit: contain;
        }

        .button-container {
            margin-top: 50px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 20px;
        }

        .layanan-button {
            background-color: rgb(3, 69, 139);
            color: white;
            border: none;
            padding: 40px 60px;
            font-size: 32px;
            border-radius: 16px;
            cursor: pointer;
            min-width: 300px;
            width: 100%;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            transition: background-color 0.2s ease;
            word-wrap: break-word;
        }

        .layanan-button:hover {
            background-color: #0056b3;
        }

        @media (max-width: 768px) {
            .layanan-button {
                font-size: 24px;
                padding: 30px 40px;
                min-width: 80%;
            }
        }

        @media (max-width: 480px) {
            .layanan-button {
                font-size: 20px;
                padding: 20px 30px;
            }
        }
		
		/* Background modal */
#modal-ulang {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Box modal */
.modal-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 14px;
    width: 360px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #003366;
    text-align: center;
}

/* Input dan select */
.modal-box select,
.modal-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

/* Tombol */
.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-cancel {
    background: #ccc;
    color: #333;
}

.btn-cancel:hover {
    background: #999;
}

.btn-print {
    background: #28a745;
    color: #fff;
}

.btn-print:hover {
    background: #1e7e34;
}