
body {
    font-family: Arial, sans-serif;
    background-color: #fefefe;
    color: #333;
    padding: 20px;
    text-align: center;
}
h2 {
    color: #d85f5f;
}
table {
    margin: 20px auto;
    border-collapse: collapse;
    width: 90%;
    max-width: 1000px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
th, td {
    padding: 12px 15px;
    text-align: center;
}
th {
    background-color: #f18e7e;
    color: white;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:hover {
    background-color: #fceaea;
}
a {
    text-decoration: none;
    color: #d85f5f;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}

.container {
    max-width: 700px;
    margin: 60px auto;
    padding: 20px;
    background-color: #fffaf9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.welcome-text {
    font-size: 18px;
    color: #555;
    margin: 20px 0;
}
.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-reservation, .btn-logout {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
}
.btn-reservation {
    background-color: #f18e7e;
    color: white;
}
.btn-reservation:hover {
    background-color: #e26c60;
}
.btn-logout {
    background-color: #ccc;
    color: black;
}
.btn-logout:hover {
    background-color: #999;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
input, button {
    padding: 10px;
    width: 90%;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
button {
    background-color: #f18e7e;
    color: white;
    border: none;
}
button:hover {
    background-color: #e26c60;
}
