/*
    Last Updated    : 2025-04-18 18:18
    Version         : 1.06
*/

body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}

.app-container {
    max-width: 600px;
    margin: auto;
    padding: 1em;
}

h1 {
    text-align: center;
    margin-bottom: 1em;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 1em;
    margin-bottom: 1em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card h2 {
    margin-top: 0;
    font-size: 1.2em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
}

.center {
    justify-content: center;
}

.toggle-unit {
    text-align: right;
    font-size: 0.9em;
    color: #0074D9;
    cursor: pointer;
    margin-top: 0.5em;
}

.last-updated {
    font-size: 0.8em;
    color: #666;
    text-align: right;
    margin-top: 0.5em;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Gallery styles */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    text-align: center;
    width: 200px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.caption {
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
}
