/* Simple professional styling */
.pbf-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:30px;box-shadow:0 4px 12px rgba(0,0,0,0.05);max-width:880px;margin:16px auto}
.pbf-title{font-size:24px;margin:0 0 4px;color:#5C4033 !important}
.pbf-desc{color:#6b7280;margin:0 0 24px}
.pbf-section{margin-bottom:24px;padding-bottom:24px;border-bottom:1px solid #e5e7eb}
.pbf-section:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.pbf-section-title{font-size:18px;margin:0 0 16px;color:#5C4033 !important}
.pbf-grid{display:grid;gap:20px}
.pbf-grid-1{grid-template-columns:1fr}
.pbf-grid-2{grid-template-columns:repeat(2,1fr)}
.pbf-grid-3{grid-template-columns:repeat(3,1fr)}
.pbf-helper-text{color:#5C4033 !important}
/* --- Label Color Fix --- */
.pbf-grid label{display:flex;flex-direction:column;gap:6px;font-weight:500;font-size:14px;color:#5C4033 !important} /* Added color */
.pbf-grid input[type="text"],.pbf-grid input[type="email"],.pbf-grid input[type="tel"],.pbf-grid input[type="date"],.pbf-grid input[type="time"],.pbf-grid input[type="number"],.pbf-grid select,.pbf-grid textarea{padding:10px 12px;border:1px solid #d1d5db;border-radius:10px;font:inherit;width:100%;box-sizing:border-box}

/* --- Improved Checkbox & Radio Styles --- */
.pbf-checkbox-group label {
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
  gap: 8px; /* Creates space between input and text */
}
.pbf-checkbox-group input[type="checkbox"],
.pbf-checkbox-group input[type="radio"] {
  width: auto;
  margin: 0; /* Remove default margins */
  flex-shrink: 0; /* Prevents shrinking */
  height: 1em; /* Consistent sizing */
  width: 1em;
	 color: #5C4033 !important; 
}
.pbf-checkbox-group strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #5C4033 !important; /* Changed color */
}
.pbf-checkbox-group label { color: #5C4033 !important}
/* -------------------------------------- */

.pbf-actions{display:flex;align-items:center;gap:12px;margin-top:24px}
.pbf-btn{background:#5C4033 !important ;color:#fff !important;border:none !important;border-radius:10px !important;padding:12px 20px !important;cursor:pointer !important;font-size:16px !important;font-weight:500 !important}
.pbf-btn:hover{opacity:.92}
.pbf-btn-outline{background:#fff;border:1px solid #d1d5db;color:#111827}
.pbf-status{font-size:14px;color:#374151}
.pbf-success{color:#065f46}
.pbf-error{color:#b91c1c}
.pbf-summary{background:#f9fafb;border:1px solid #e5e7eb;border-radius:10px;padding:16px;margin:12px 0}
.pbf-summary div{padding:4px 0}
.pbf-methods{display:flex;flex-direction:column;gap:12px}
.pbf-method details{padding:8px 0}
.pbf-bank{border-left:3px solid #111827;padding-left:12px;margin-top:8px;color:#374151}
@media (max-width:720px){.pbf-grid-2,.pbf-grid-3{grid-template-columns:1fr}}

/* Styles for geocode.maps.co autocomplete */
.ge-autocomplete-list{
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 4px;
    z-index: 1000;
}
.ge-autocomplete-list-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
}
.ge-autocomplete-list-item:hover,
.ge-autocomplete-list-item.ge-autocomplete-selected {
    background-color: #f3f4f6;
}
