#kitchen-project-form { max-width:500px; margin:0 auto; display:flex; flex-direction:column; gap:15px; font-family:Arial,sans-serif; }
#kitchen-project-form label { display:flex; flex-direction:column; font-weight:bold; font-size:14px; }
#kitchen-project-form input[type="text"], #kitchen-project-form input[type="tel"], #kitchen-project-form textarea, #kitchen-project-form input[type="file"] {
    padding:8px; margin-top:5px; border:1px solid #ccc; border-radius:5px; font-size:14px; width:100%; box-sizing:border-box;
}
#kitchen-project-form textarea { resize:vertical; min-height:80px; }
#drop-area { border:2px dashed #999; border-radius:5px; padding:20px; text-align:center; cursor:pointer; transition:background 0.2s; }
#drop-area:hover { background:#f0f0f0; }
#file-list { margin-top:10px; font-size:13px; color:#555; }
#kitchen-project-form button[type="submit"] { background-color:#8DAC99; color:#fff; border:none; padding:12px; font-size:16px; border-radius:5px; cursor:pointer; transition:background 0.2s; }
#kitchen-project-form button[type="submit"]:hover { background-color:#353535; }
#form-response { margin-top:10px; font-size:14px; color:green; }
