
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, lightblue, lightgreen);
    margin: 0;
    padding: 0;
}
header {
    text-align: center;
    padding: 20px;
}
header img {
    height: 80px;
}
h1, h2, h3 {
    text-align: center;
}
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
input, select, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}
button {
    background: #006699;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background: #004466;
}
.nav-btn {
    position: absolute;
    top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #333;
    color: #fff;
    cursor: pointer;
}
.back { left: 10px; }
.home { right: 10px; }
.table-container {
    overflow-x: auto;
}
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}
th {
    background: #eee;
}
/* === Agent Info Panel === */

/* === Agent Info Panel === */
#agentInfoPanel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f7fbff;
  border: 1px solid #cfe2ff;
  border-radius: 0 0 8px 8px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  z-index: 1500;
  font-size: 13px;
}

body {
  padding-top: 100px; /* Push content down so it's not hidden under fixed header */
}

#agentInfoPanel input {
  border: none;
  background: transparent;
  font-weight: bold;
  width: 110px;
}

#agentInfoPanel button {
  border: none;
  background: #007bff;
  color: white;
  padding: 4px 8px;
  margin-left: 4px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}
#agentInfoPanel button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
#agentInfoPanel button:hover:not(:disabled) {
  background: #0056b3;
}



