﻿@import url(https://fonts.googleapis.com/css?family=Share+Tech+Mono);

body {
  background-color: #121926;
  color: #e0ffe0;
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  margin: 0;
  padding: 20px;
}

.dashboard-title {
  font-size: 2em;
  color: #00ffcc;
  margin-bottom: 10px;
}

.section-header {
  margin-top: 30px;
  color: #4caf50;
  border-bottom: 2px solid #4caf50;
  padding-bottom: 5px;
}

.agent-controls {
  background: linear-gradient(145deg, #1a1f2e, #232c44);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  border: 2px solid #4caf50;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
  max-width: 500px;
}

.status-label {
  font-size: 1.1em;
  display: block;
  margin-bottom: 8px;
  color: #aaffaa;
}

.status-control-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.status-select {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #4caf50;
  background-color: #1e1e2f;
  color: #e0ffe0;
  font-family: 'Orbitron';
}

.status-button {
  background-color: #00ff88;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}
.status-button:hover {
  background-color: #00e676;
}




p {
  padding: 0;
  margin: auto;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  text-align: center;
}

h2 {
  margin-top: 0;
  border-bottom: 1px solid black;
}

button {
  margin-bottom: 10px;
}

label {
  text-align: left;
  font-size: 1.25em;
  color: #777776;
  display: block;
}

header {
  text-align: center;
}

main {
  padding: 3em;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.left-column,
.center-column,
.right-column {
  width: 30%;
  min-width: 16em;
  margin: 0 1.5em;
  text-align: center;
}

/* Left Column */
#client-name {
  text-align: left;
  margin-bottom: 1em;
  font-family: "Helvetica Light", Helvetica, sans-serif;
  font-size: 1.25em;
  color: #777776;
}

select {
  width: 300px;
  height: 60px;
  margin-bottom: 10px;
}

/* Center Column */
input {
  font-family: Helvetica-LightOblique, Helvetica, sans-serif;
  font-style: oblique;
  font-size: 1em;
  width: 100%;
  height: 2.5em;
  padding: 0;
  display: block;
  margin: 10px 0;
}

div#volume-indicators {
  padding: 10px;
  margin-top: 20px;
  width: 500px;
  text-align: left;
}

div#volume-indicators > div {
  display: block;
  height: 20px;
  width: 0;
}

/* Right Column */
.right-column {
  padding: 0 1.5em;
}

#log {
  text-align: left;
  border: 1px solid #686865;
  padding: 10px;
  height: 9.5em;
  overflow-y: scroll;
}

.log-entry {
  color: #686865;
  font-family: "Share Tech Mono", "Courier New", Courier, fixed-width;
  font-size: 1.25em;
  line-height: 1.25em;
  margin-left: 1em;
  text-indent: -1.25em;
  width: 90%;
}

/* Other Styles */
.hide {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

button:disabled {
  cursor: not-allowed;
}


.agent-hud {
  background: linear-gradient(145deg, #1f1f2e, #292945);
  border-radius: 12px;
  border: 2px solid #4caf50;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
  padding: 20px;
  margin: 15px 0;
  color: #e0ffe0;
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  transition: transform 0.2s ease;
}
.agent-hud:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px #00ff88;
}

.hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3em;
  margin-bottom: 12px;
  border-bottom: 1px solid #4caf50;
  padding-bottom: 6px;
}

.hud-status {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
.hud-status.available {
  background-color: #28a745;
}
.hud-status.busy {
  background-color: #ffc107;
  color: #222;
}
.hud-status.unavailable {
  background-color: #dc3545;
}
.hud-status.unknown {
  background-color: #6c757d;
}

.hud-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  font-size: 0.95em;
}

.hud-label {
  font-weight: 600;
  color: #80ff80;
}

.accordion-wrapper {
  margin: 30px 0;
  padding: 15px;
  background: #1c1f2b;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000080;
  color: #e0ffe0;
}

.accordion {
  background-color: #2c334d;
  color: #fff;
  padding: 14px;
  width: 100%;
  border: none;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  margin-bottom: 5px;
  border-radius: 5px;
}

.panel {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #333;
  margin-bottom: 10px;
  border-radius: 5px;
}

.accordion.active + .panel {
  display: block;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.tab-button {
  padding: 8px 16px;
  background-color: #444;
  color: #eee;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.tab-button.active {
  background-color: #00ff88;
  color: #111;
}
.tab-content {
  background-color: #222;
  padding: 15px;
  border-radius: 6px;
}
.hidden {
  display: none;
}
