/* ===== Travel Fleet Exchange Modern UI ===== */

.tfe-form, .tfe-trips {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-family: "Inter", sans-serif;
}

.tfe-form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
}

.tfe-form input, 
.tfe-form select, 
.tfe-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.2s border-color;
}

.tfe-form input:focus,
.tfe-form select:focus,
.tfe-form textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.tfe-form button {
  background: #0073aa;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.2s background;
}

.tfe-form button:hover {
  background: #005f8c;
}

/* ===== Trip Listing ===== */
.tfe-trips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.tfe-trip {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tfe-trip:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tfe-trip h3 {
  font-size: 18px;
  color: #0073aa;
  margin-bottom: 10px;
}

.tfe-trip p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.tfe-trip a.btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  font-size: 14px;
  transition: 0.2s;
}

.tfe-trip a.btn:hover {
  background: #20b85d;
}

@media(max-width: 600px) {
  .tfe-form, .tfe-trips {
    padding: 15px;
  }
}


/* ====== Agent Profile Page ====== */

.tfe-agent-profile {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  font-family: "Inter", sans-serif;
}

.tfe-agent-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tfe-agent-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #0073aa;
}

.tfe-agent-info h2 {
  font-size: 22px;
  color: #0073aa;
  margin-bottom: 6px;
}

.tfe-agent-info p {
  margin: 3px 0;
  color: #444;
}

.tfe-agent-info .btn {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 8px 14px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.btn.green { background: #25D366; }
.btn.blue { background: #0073aa; }

.btn.green:hover { background: #1eb35a; }
.btn.blue:hover { background: #005f8c; }
