/* Form styling */
#removals-quote-form {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#removals-quote-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

#removals-quote-form input[type="text"],
#removals-quote-form input[type="email"],
#removals-quote-form input[type="date"],
#removals-quote-form input[type="file"],
#removals-quote-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#removals-quote-form textarea {
    min-height: 120px;
    resize: vertical;
}

#removals-quote-form button {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

#removals-quote-form button:hover {
    background-color: #005a8c;
}

/* Popup modal styling */
#thank-you-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
}

#thank-you-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#thank-you-popup-content h2 {
    margin: 0 0 15px;
    font-size: 24px;
    color: #333;
}

#thank-you-popup-content p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #555;
}

#close-popup-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

#close-popup-btn:hover {
    background-color: #005a8c;
}

@media only screen and (max-width:627px) {
		#removals-quote-form {
		max-width:95%;
	}
	
}
