@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.main-container {
    max-width: 550px;
    width: 100%;
    padding: 20px;
}

.tracker-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    max-width: 180px;
    height: auto;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.02);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Style untuk modal */
.modal-content {
    border-radius: 12px;
}
#map {
    border-radius: 8px;
}