body {
    background-color: white;
    font-family: Arial, sans-serif;
    color: black;
    margin: 0;
    padding: 0;
}

h1, h2 {
    color: pink;
    text-align: center;
}

a {
    color: pink;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Navigation bar styling */
nav {
    background-color: black;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    font-size: 18px;
}

nav a:hover {
    color: pink;
}

/* Form styling */
form {
    margin: 0 auto;
    width: 300px;
    padding: 20px;
    border: 2px solid pink;
    border-radius: 10px;
    background-color: black;
}

form input, form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

form input {
    background-color: white;
    color: black;
}

form button {
    background-color: pink;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background-color: white;
    color: pink;
}

/* Error and Success Messages */
.error, .success {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

.error {
    color: red;
}

.success {
    color: green;
}

/* Reservation List */
ul {
    list-style-type: none;
    padding: 0;
    width: 50%;
    margin: 20px auto;
}

ul li {
    background-color: black;
    color: white;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

ul li:nth-child(odd) {
    background-color: pink;
}

ul li a {
    color: white;
}
.room-description {
    border: 1px solid #000;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

h2 {
    color: #333;
}

h3 {
    color: #e91e63; /* Pink color for room names */
}
