﻿.simple-menu {
    max-width: 480px;
    margin: 50px auto;
    padding: 20px;
    font-family: system-ui, sans-serif;
}

    .simple-menu h1 {
        font-size: 2.2rem;
        margin-bottom: 40px;
        color: #222;
    }

.big-button {
    display: block;
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 10px;
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
    .big-button .icon {
        font-size: 2.4rem; /* ← Change this number to make icons bigger or smaller */
        margin-right: 16px;
        vertical-align: middle;
    }
    .big-button:hover {
        background-color: whitesmoke;
    }

    /* Make the last button a different color if you want */
    .big-button:nth-child(5) {
        background-color: #16a34a;
    }

        .big-button:nth-child(5):hover {
            background-color: #15803d;
        }
