/* 
    Created on : Apr 27, 2025, 6:58:00 PM
    Author     : Christopher James Mercado
*/

body {
    margin: 0;
    height: 90vh;
    background: var(--color-tan);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

svg {
    width: 200px;
    height: 100px;
    overflow: visible;
}

.bar {
    transition: height 0.2s ease, y 0.2s ease;
}

.locating-message {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
    color: var(--color-black);
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.error-message {
    z-index: 1;
    background-color: #f8d7da;
    color: #721c24;
    padding: 16px 0;
    margin: 100px auto;
    border-radius: 8px;
    text-align: center;
    font-family: sans-serif;
    font-size: 1.25em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: shake 1s;
}
