* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    /* width: 100%; */
    /* height: 100%; */
    font-family: "Kefa", serif;
    background-color: #fff9de;
}

main {
    width: 70%;
    margin: 0 auto;
    display: block;
}
header {
    background-color: #ffda00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    height: 10vh;
    max-width: 1030px;
}

nav a {
    text-decoration: none;
    color: #000;
    transition: all 0.25s ease-in-out;
}

nav a:hover {
    transform: scale(1.25);
}

.hotelimg {
    height: auto;
    max-width: 1030px;
}

.hotelimg img {
    width: 100%;
}

.overlay {
    position: absolute;
    top: 34vw;
    left: 65%;
    max-width: 340px;
    max-height: 90px;
    padding: 20px 45px;
    background-color: #ffda00;
    border-radius: 70px;
}
.overlay h1 {
    /* margin: 10px auto; */
    text-align: center;
    color: black;
    text-align: center;
    font-family: "Kefa", serif;
    font-size: 48px;
}

/* Form section styles */
form {
    max-width: 1030px; /* Full width of the main content */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px auto;
    background-color: #fff9de; /* Assuming white background for form */
    padding: 20px; /* Add padding */
    border-radius: 10px; /* Rounded corners for the form */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input,
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
}

form select {
    width: fit-content;
    padding: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    color: #000;
    background-color: #f0e68c;
    border-radius: 5px;
}

/* Radio button styles */
form .radio-group {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 15px 0;
}

form .radio-group input {
    width: 40px;
}

form .radio-group label {
    margin: 0;
}

/* Submit button styles */
.button {
    background-color: #ffd700;
    font-family: "Kefa", serif;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 20px;
}

.button:hover {
    background-color: #f0e68c;
}

.the-salutation {
    padding: 20%;
}

.tooltiptext {
    visibility: hidden;
    z-index: 1;
    /* color: #4a4a4a; */
    color: #790909;
    font-size: 0.9rem;
    padding: 10px;
}

/* Display */

.display-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.display-table {
    border-spacing: 0;
}

.table-head {
    background-color: rgba(255, 255, 255, 0.516);
    color: rgb(0, 0, 0);
    text-align: left; /* Left-align table header text */
}

.table-head th {
    padding: 15px;
    border-right: 2px solid #f0e68c;
}

.table-body {
    background-color: #f9f9f9;
}

.table-row {
    transition: background-color 0.3s;
}

.table-row:hover {
    background-color: #e6e6e6;
}

.table-cell {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

/* Style the last cell in each row without border-bottom */
.table-cell:last-child {
    border-bottom: none;
}

/* Alternating row colors */
.table-body > tr:nth-child(odd) {
    background-color: rgb(250, 235, 137);
    color: rgb(0, 0, 0);
}

.table-body > tr:nth-child(even) {
    background-color: rgb(255, 244, 198);
}

/* Padding for paragraph inside table cell */
.table-body tr td p {
    padding: 10px;
}
