
body {
    font-family: 'Inter', sans-serif;
    background: #f3f5f9;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 480px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}
.card {
    display: flex;
    flex-direction: column;
}
.card label {
    margin: 10px 0 5px;
    font-weight: 600;
}
.card input, .card select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.card button {
    margin-top: 20px;
    padding: 10px;
    background: #2e8b57;
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}
.card button:hover {
    background: #246e46;
}
.message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}
.message.success {
    background: #e6f9ea;
    color: #206a37;
    border: 1px solid #b3e8c5;
}
.message.error {
    background: #ffe0e0;
    color: #b30000;
    border: 1px solid #ffb3b3;
}
.note {
    font-size: 13px;
    color: #777;
    text-align: center;
    margin-top: 10px;
}


.menu {
  position: relative;
  z-index: 10;
}

.action-buttons {
  position: relative;
  z-index: 5;
}
.hero-banner {
  padding-bottom: 80px; /* add enough space */
}

