
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f0f4f7;
    margin: 0;
}
.container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin: 2rem auto;
    width: 90%;
    max-width: 600px;
}
.container.wide {
    max-width: 1000px;
}
h1, h2 {
    color: #0077cc;
}
input[type="text"] {
    width: 90%;
    padding: 0.7rem;
    margin: 0.5rem auto;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
}
button {
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background-color: #005fa3;
}
button.alt {
    background-color: #00bfa6;
}
button.alt:hover {
    background-color: #008e7c;
}
.top-right {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.hero {
    background: url('/static/images/reception.jpg') no-repeat center center/cover;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 6px black;
}
.hero-text {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 1rem;
}
.animated-box {
    background: #eef;
    padding: 1rem;
    border-radius: 0.5rem;
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
th, td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: left;
}
th {
    background-color: #0077cc;
    color: white;
}
.features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-around;
}
.feature-card {
    flex: 1 1 250px;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.feature-card img {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}
.flash.danger {
    color: red;
    font-weight: bold;
    margin: 10px 0;
    padding: 8px 12px;
    border: 1px solid red;
    border-radius: 5px;
    background-color: #ffe6e6;
}
.reset-link {
    margin-top: 10px;
    text-align: center;
}
.reset-link a {
    color: #007BFF;
    text-decoration: none;
}
.reset-link a:hover {
    text-decoration: underline;
}
