/* style.css */

/* Body and Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px; /* Changed to match the second body rule */
    text-align: center;
}

h1 {
    color: #333;
    margin-top: 50px;
}

/* Authentication Button Styles */
.auth-options {
    margin-top: 20px;
}

.auth-button {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.auth-button:hover {
    background-color: #45a049;
}

/* Form Styles */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold; /* Added to make labels stand out */
}

input[type="text"], input[type="password"], input[type="date"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Specific for date inputs (Start and End Date) */
.date-group {
    display: flex;
    justify-content: space-between;
}

input[type="date"] {
    width: calc(50% - 10px); /* Makes Start and End Date inputs fit on one line */
    display: inline-block;
}

/* Buttons */
button {
    padding: 10px 15px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.maps-button {
    margin-left: 10px;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

.maps-button:hover {
    background-color: #0056b3;
}

/* Links */
a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

/* Navigation Menu Styles */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333;
    overflow: hidden;
}

nav ul li {
    float: left;
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #111;
}


.delete-button {
    padding: 10px 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
}

.delete-button:hover {
    background-color: darkred;
}

