/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 18 2025 | 12:47:30 */
/* General Form Styling */
.wpcf7-form {
/*     max-width: 1000px; */
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(214, 201, 187, 0.4);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	font-family: Heebo,sans-serif;
}

.wpcf7-form h3 {
    font-size: 24px;
/*     color: #333; */
	color: #e25098;
    margin-bottom: 15px;
    border-bottom: 2px solid #e2e2e2;
    padding-bottom: 5px;
}

.wpcf7-form p {
    margin-bottom: 20px;
    font-size: 16px;
/*     color: #555; */
	color: #ec7c9c;
	font-family: Heebo,sans-serif !important;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--bruin);
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
    font-size: 14px;
}

/* Date Time Picker */
.walcf7-datetimepicker::placeholder {
	color: #63605a !important;
	font-style: normal !important ;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover {
	background: var(--beige) !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current {
	background: var(--bruin) !important;
}

img[alt="Total-cakes"] {
	margin-bottom: -60px;
}

/* Files upload */
.wpcf7-form-control-wrap input{
	
}

/* Cake details grid */
.cake-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Dit maakt vier gelijke kolommen */
    gap: 20px; /* Optioneel: ruimte tussen de kolommen */
}

.wpcf7-form input[type="file"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-form select {
    cursor: pointer;
}

/* Important notice */
.form-important-notice b {
	font-size: 20px;
	color: #e25098;;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    background-color: #f78f1e;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.submit-btn:hover {
	background-color: #A59183 !important;
	color: white;
}

/* .wpcf7-form input[type="submit"]:hover {
    background-color: #e67e22;
}
 */
/* Placeholder styling */
.wpcf7-form input::placeholder, 
.wpcf7-form textarea::placeholder {
    color: #888;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 15px;
    }
	
	 .cake-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.qodef-content-grid {
		width: 90%;
	}
	
	img[alt="Total-cakes"] {
		margin-bottom: 0px;
	}
	
	/* Important notice */
	.form-important-notice b {
	font-size: 18px;
}
}

@media (max-width: 480px) {
    .cake-details-grid {
        grid-template-columns: 1fr;
    }
}
