.vfp-container{
  max-width:900px;
  margin:40px auto;
  padding:30px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
  font-family:Arial, sans-serif;
}
.vfp-container h2{ text-align:center; margin-bottom:20px; }
.vfp-container h3{ margin:20px 0 10px; }
.hint{ color:#666; margin-bottom:10px; }

.vfp-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.full{ grid-column:span 2; }

input,textarea{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
}
textarea{ min-height:80px; }

button{
  padding:12px 16px;
  background:#0073aa;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition:0.3s ease;
}
button:hover{ background:#005d8f; }

/* Disabled button (loading state) */
button:disabled{
  opacity:0.6;
  cursor:not-allowed;
}

/* Preview section polish */
#previewBox{
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid #eee;
}

/* Better image layout */
#preview{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:25px;
  align-items:flex-start;
}

/* Slight hover effect */
.preview-img{
  width:150px;
  height:auto;
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,0.2);
  transition:0.2s;
}
.preview-img:hover{
  transform:scale(1.05);
}

/* Admin cards */
.card{
  border:1px solid #ddd;
  padding:10px;
  margin:10px;
}
.img-box{
  display:inline-block;
  margin:5px;
}
.img-box img{
  width:120px;
  display:block;
}

/* Success box */
#successBox{
  text-align:center;
  margin-top:30px;
}

/* Smooth form transition */
#vfpForm{
  transition:0.3s ease;
}

/* Review message */
.review-note{
  font-size:14px;
  color:#444;
  margin-bottom:15px;
  line-height:1.5;
}

/*  Highlighted CTA link (IMPORTANT) */
.vfp-link-btn{
  display:inline-block;
  padding:10px 16px;
  background:#28a745;
  color:#fff !important;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.vfp-link-btn:hover{
  background:#218838;
  transform:translateY(-1px);
}
.rate-note{
  font-size:13px;
  color:#555;
  margin-top:-10px;
  margin-bottom:10px;
}