body {
    margin: 0;
    padding: 0;
    height: 100vh; /* Ensure full viewport height */
    background: linear-gradient(to bottom right, brown, orange);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black; /* Set text color to black for better visibility */
}
h1 {
    margin-top: 20px;
    margin-bottom: 5px;
}

h3 {
    margin-top: 0px;
    margin-bottom: 5px;
}

p {
    margin-top: 5px;
    margin-bottom: 5px;  
}


a {
    color: white; /* Set the text color for the link explicitly */
    text-decoration: none;
}

.add_restaurant_container:hover {
    background-color: darkblue; /* Change background color on hover for better feedback */
    color: white;
    font-weight: bold;
    text-decoration: none;
}
/* Style for the label */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Style for the select element */
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Optional: Style for the options inside the dropdown */
select option {
    font-size: 14px;
}
/* Style for the submit button */
button {
    background-color: #4CAF50; /* Green background color */
    color: #fff; /* White text color */
    padding: 10px 15px; /* Padding for better readability */
    border: 3px; /* Remove border */
    border-style: solid;
    border-color: white;
    border-radius: 10px; /* Optional: Add border-radius for rounded corners */
    cursor: pointer; /* Add pointer cursor on hover */
    font-size: 16px; /* Adjust font size */
}

/* Optional: Style for the button on hover */
button:hover {
    background-color: #45a049; /* Darker green on hover */
    font-weight: bold;
}

admin_button {
    background-color: Red; /* Green background color */
    color: #fff; /* White text color */
    padding: 10px 15px; /* Padding for better readability */
    border: 3px; /* Remove border */
    border-style: solid;
    border-color: white;
    border-radius: 10px; /* Optional: Add border-radius for rounded corners */
    cursor: pointer; /* Add pointer cursor on hover */
    font-size: 16px; /* Adjust font size */
}

/* Optional: Style for the button on hover */
admin_button:hover {
    background-color: rgb(218, 2, 2); /* Darker green on hover */
    font-weight: bold;
    border-color: white;
}


/* Style for the form */
form {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Align items vertically in the center */
}

/* Style for the select element */
select {
    width: 90%; /* Adjust the width of the dropdown */
    margin-right: 10px; /* Add margin to separate the dropdown and button */
}

