/* style.css */

/* Modal styling */
#quote-form-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto; /* Enable vertical scrolling */
}
/* Modal styling */
#booking-form-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto; /* Enable vertical scrolling */
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 80vh; /* Set maximum height as 80% of viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

/* Form styling */
#quote-form {
    margin-top: 15px;
}

#quote-form label {
    display: block;
    margin-bottom: 8px;
}

#quote-form input,
#quote-form textarea,
#quote-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

#quote-form #quote-name,
#quote-form #quote-surname {
    width: 100%;
}

#quote-form button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
/* Form styling */
#book-form {
    margin-top: 15px;
}

#book-form label {
    display: block;
    margin-bottom: 8px;
}

#book-form input,
#book-form textarea,
#book-form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

#book-form #quote-name,
#book-form #quote-surname {
    width: 100%;
}

#book-form button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Bootstrap styles */
.container {
    max-width: 60%;
    margin: 0 auto;
}