/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 960px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    background: #373743;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    display: block;
}

.navbar ul,
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar ul li {
    margin-left: 15px;
}
.footer ul li {
    margin-left: 15px;
}

.navbar ul li a,
.footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border: 2px solid #dd7703;
    border-radius: 5px;
    display: inline-block;
    box-sizing: border-box;
}

.navbar ul li a:hover {
    outline: 1px solid #dd7703;
}

/* Footer */
.footer {
    background: #373743;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Main Content */
.content {
    padding: 20px;
    min-height: 400px;
    flex: 1;
    padding-bottom: 100px;
}

/* Booking Form Container */
#form-container {
    font-family: Arial, sans-serif;
    color: #373743;
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #dd7703;
}

#form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #dd7703;
}

/* Form Elements */
#form-container form {
    display: flex;
    flex-direction: column;
}

#form-container label,
#custom-address-fields label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #373743;
    font-size: 15px;
    display: block;
}

#form-container input[type="text"],
#custom-address-fields input[type="text"],
#form-container input[type="email"],
#form-container input[type="date"],
#form-container textarea,
#form-container select {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background-color: white;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

#form-container input:focus,
#form-container textarea:focus,
#form-container input[type="date"]:focus,
#form-container select:focus {
    border-color: #dd7703;
    outline: none;
}

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

/* Dog Selection */
.dog-select-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

#dog-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #dd7703;
}

#dog-image-wrapper {
    margin-bottom: 20px;
}

.dog-info {
    background-color: #fff7ee;
    border-left: 4px solid #dd7703;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #373743;
}

/* Custom Address Fields */
#custom-address-fields {
    margin-top: 20px;
}

/* Submit Button */
#form-container button,
#form-container input[type="submit"] {
    background-color: #dd7703;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#form-container button:hover,
#form-container input[type="submit"]:hover {
    background-color: #c46202;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .footer ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer ul li {
        margin: 10px 0;
    }

    .dog-select-wrapper {
        flex-direction: column;
        align-items: center;
    }
}