/* --- RF Modified layout and passenger table tweaks --- */

/* container & basic cards (keep existing palette) */
.rf-container{max-width:980px;margin:24px auto;padding:12px;}
.rf-card{background:#fff;border-radius:12px;padding:16px;margin-bottom:14px;box-shadow:0 6px 18px rgba(10,30,60,0.04);}

/* two-col layout */
.two-cols{display:flex;gap:12px;}
.two-cols > div{flex:1;}
.three-cols{display:flex;gap:12px;}
.three-cols > div{flex:1;}

/* inputs */
input[type="text"], input[type="email"], input[type="number"], select {width:100%;padding:10px;border:1px solid #e6eef6;border-radius:8px;background:#fff;}
label{display:block;margin-bottom:6px;color:#23424f;font-weight:700;font-size:13px;}

/* passengers table - adjusted widths and header color (light sky blue) */
.rf-passengers-table{border-collapse:collapse;width:100%;min-width:760px;}
.rf-passengers-table thead th{background:#eaf6ff; color:#0b3b5a; font-weight:700; padding:8px; font-size:13px;}
.rf-passengers-table th, .rf-passengers-table td{border:1px solid rgba(0,0,0,0.06);padding:8px;text-align:center;font-size:13px;vertical-align:middle;}

/* Logical column widths */
.c-counter{width:40px;}   /* smaller # column */
.c-ptype{width:110px;}    /* group age */
.c-name{width:220px;text-align:left;padding-left:10px;}
.c-nid{width:140px;}
.c-pass{width:160px;}
.c-birth-sh{width:140px;}
.c-birth-ad{width:140px;}
.c-note{width:160px;}
.c-op{width:90px;}

/* remove-row button */
.remove-row{background:#e74c3c;color:#fff;border:none;border-radius:6px;padding:6px 8px;cursor:pointer;}

/* vertical header style removed for better readability */
.rf-passengers-table thead th.c-op{writing-mode:horizontal-tb; transform:none;}

/* captcha placement — keep it compact and on the side */
#rf-captcha-wrap{display:flex;align-items:center;gap:8px;}
#rf-captcha{font-weight:bold;color:#d97900;padding:6px 10px;border-radius:6px;background:#fff7ea;border:1px solid rgba(217,121,0,0.08);}

/* submit button smaller and logical */
.rf-btn--primary{background:#d97900;color:#fff;border:none;padding:8px 12px;border-radius:8px;font-weight:700;}

/* responsive adjustments */
@media(max-width:720px){
  .two-cols, .three-cols{flex-direction:column;}
  .rf-passengers-table{min-width:640px;}
  .c-name{width:140px;}
}

/* suggestion box */
.rf-suggest{position:relative;background:#fff;border:1px solid #e6eef6;border-radius:6px;box-shadow:0 8px 20px rgba(10,30,60,0.06);margin-top:6px;z-index:9999;}
.rf-suggest-item{padding:6px 10px;cursor:pointer;}
.rf-suggest-item:hover{background:#f3f8ff;}
