body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, #f7e7ce, #f5d7b2);
    color: #4a2c0e;
    min-height: 100vh;
    background-attachment: fixed;
}

.hidden {
    display: none !important;
}

header {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.1em;
}

header a {
    color: #6b3a0f;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

#helloUser {
    display: inline;
}

h1 {
    color: #6b3a0f;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-style: italic;
}

ul {
    list-style-type: none;
    text-align: left;
    display: block;
    margin: 20px auto;
    padding: 15px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

li {
    text-align: left;
    margin: 10px 0;
    font-size: 1.1em;
    border-left: 3px solid #d4a017;
    padding-left: 10px;
}

button {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    font-size: 1.1em;
    background: #d4a017;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: #b8860b;
    transform: scale(1.05);
}
    
button:focus {
    outline: 3px solid #6b3a0f;
    outline-offset: 2px;
}

.bartender-image {
    display: block;
    margin: 30px auto 20px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    border: 4px solid #d4a017;
    background: #fffbe6;
}

form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #4a2c0e;
}

input {
    width: 80%;
    padding: 8px;
    margin: 0 auto 15px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#login-form, #register-form {
    display: inline-block;
    width: 45%;
    vertical-align: top;
    margin: 10px;
}

#message {
    text-align: center;
    margin-top: 20px;
    color: #d4a017;
    font-weight: bold;
}
