/* body styles the whole page */
body {
    background-color: #f4f6f9;
    font-family: Arial, sans-serif;
}

/* menu-card styles every dashboard card */
.menu-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s ease;
}

/* :hover applies style when the mouse is over the card */
.menu-card:hover {
    transform: translateY(-5px);
}

/* resultado-box styles the API output area */
.resultado-box {
    background-color: #111;
    color: #00ff88;
    padding: 20px;
    border-radius: 10px;
    min-height: 200px;
    white-space: pre-wrap;
}