﻿/* ── Variables ── */
:root {
  --wall:      #3A6475;
  --wall-dark: #243E4A;
  --floor:     #E8D5A3;
  --desk:      #8B5E3C;
  --desk-dark: #5C3018;
  --chair:     #7B4428;
  --chair-dk:  #4A2010;
  --win:       #B8D8EA;
  --win-frame: #7AAAC0;
  --px:        'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #121D38;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px 20px;
  font-family: var(--px);
  min-width: fit-content;
}

/* ── Title ── */
.title-bar { text-align: center; margin-bottom: 8px; width: 1710px; }
.title-main {
  display: block;
  font-size: 16px;
  color: #E8C060;
  letter-spacing: 3px;
  text-shadow: 2px 2px 0 #000;
}
.title-sub {
  font-size: 9.5px;
  color: #FFFFFF;
  letter-spacing: 1px;
}
.title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 7px;
  position: relative;
}
.title-row .title-sub {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.map-btn {
  display: inline-block;
  font-size: 10px;
  color: #E8C060;
  border: 1px solid #E8C060;
  padding: 4px 10px;
  text-decoration: none;
  letter-spacing: 1px;
  background: none;
  cursor: pointer;
  font-family: var(--px);
}
.map-btn:hover { background: #E8C060; color: #000; }

.tab-left {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tab-right {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tab-group {
  position: relative;
  display: inline-block;
}
.tab-parent { white-space: nowrap; }

.tab-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0E1A22;
  border: 1px solid #E8C060;
  z-index: 100;
  min-width: 100%;
}
.tab-group:hover .tab-dropdown { display: block; }

.tab-sub {
  display: block;
  font-size: 10px;
  color: #E8C060;
  padding: 5px 10px;
  text-decoration: none;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: var(--px);
}
.tab-sub:hover { background: #E8C060; color: #000; }

/* ── Building shell ── */
.building {
  background: #D4C090;
  border: 5px solid #5C3A1E;
  box-shadow: 8px 8px 0 #000;
  padding: 5px;
  overflow-x: auto;
}

/* ══════════════════════════════════
   OFFICE GRID  — 13 cols, 3 rows
══════════════════════════════════ */
.office-grid {
  display: grid;
  grid-template-columns: repeat(13, 130px);
  grid-template-rows: 200px 62px 200px;
  gap: 0;
}

/* Corridor spans all 13 columns */
.corridor-full {
  grid-column: 1 / 14;
  background: var(--floor);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ── Walking figures ── */
.walker-a, .walker-b {
  position: absolute;
  top: 5px;
  width: 22px;
  z-index: 10;
}
/* A: bald + orange beard, left → right */
.walker-a { animation: walk-path-a 38s linear infinite; }
/* B: black hair, right → left */
.walker-b { animation: walk-path-b 38s linear infinite; }

.walker-inner {
  animation: walk-bob 0.55s steps(2, end) infinite;
}

/* Head wrapper — stacks hair/beard around skull */
.w-head-wrap {
  width: 14px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Black hair — overlaps into skull top so it looks rooted */
.w-hair {
  width: 9px;
  height: 7px;
  background: #0E0808;
  border-radius: 4px 4px 1px 1px;
  margin-bottom: -4px;   /* pushes skull up, hair bottom hidden behind skull */
  position: relative;
  z-index: 0;
  flex-shrink: 0;
}

/* Head — z-index:1 paints over the hair's embedded bottom */
.w-head {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F2CC9A;
  border: 2px solid #B08050;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
/* Face features */
.w-eye-l, .w-eye-r {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #1A0808;
  border-radius: 1px;
  top: 2px;
}
.w-eye-l { left: 2px; }
.w-eye-r { right: 2px; }
.w-nose {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #C09060;
  border-radius: 50%;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.w-mouth {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 3px;
  border-bottom: 2px solid #7A3A10;
  border-radius: 0 0 4px 4px;
}

/* Short orange beard — thin strip below chin */
.w-beard {
  width: 10px;
  height: 3px;
  background: #C04A06;
  border-radius: 0 0 3px 3px;
  margin-top: -1px;
  position: relative;
  z-index: 0;
  flex-shrink: 0;
}

/* Jacket */
.w-jacket {
  width: 22px;
  height: 16px;
  background: #1C2B44;
  border: 1px solid #0E1828;
  margin: 2px auto 0;
  position: relative;
}
.w-jacket::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 6px; height: 100%;
  background: #F0F0F0;
  z-index: 1;
}
.w-jacket::after {
  content: '';
  position: absolute;
  top: 3px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 11px;
  background: #C02020;
  z-index: 2;
}
.w-lapel-l {
  position: absolute;
  top: 0; left: 0;
  width: 10px; height: 9px;
  background: #1C2B44;
  clip-path: polygon(0 0, 100% 0, 15% 100%, 0 100%);
  z-index: 3;
}
.w-lapel-r {
  position: absolute;
  top: 0; right: 0;
  width: 10px; height: 9px;
  background: #1C2B44;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 100%);
  z-index: 3;
}

/* Arms */
.w-arm-l, .w-arm-r {
  position: absolute;
  top: 1px;
  width: 5px;
  height: 10px;
  background: #1C2B44;
  border: 1px solid #0E1828;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.w-arm-l {
  left: -6px;
  transform-origin: top right;
  animation: arm-l 0.55s steps(2, end) infinite;
}
.w-arm-r {
  right: -6px;
  transform-origin: top left;
  animation: arm-r 0.55s steps(2, end) infinite;
}
.w-hand {
  width: 4px;
  height: 3px;
  background: #F2CC9A;
  border-radius: 1px;
  flex-shrink: 0;
}

/* Legs */
.w-legs {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 1px;
}
.w-legl, .w-legr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform-origin: top center;
}
.w-legl { animation: leg-l 0.55s steps(2, end) infinite; }
.w-legr { animation: leg-r 0.55s steps(2, end) infinite; }
.w-trouser {
  width: 8px;
  height: 11px;
  background: #162236;
  border: 1px solid #0E1828;
}
.w-shoe {
  width: 11px;
  height: 4px;
  background: #0E0A06;
  border: 1px solid #1A1410;
  margin-top: 1px;
}

@keyframes leg-l {
  from { transform: rotate(-20deg); }
  to   { transform: rotate(20deg); }
}
@keyframes leg-r {
  from { transform: rotate(20deg); }
  to   { transform: rotate(-20deg); }
}
@keyframes walk-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-2px); }
}
@keyframes arm-l {
  from { transform: rotate(20deg); }
  to   { transform: rotate(-20deg); }
}
@keyframes arm-r {
  from { transform: rotate(-20deg); }
  to   { transform: rotate(20deg); }
}
/* A: bald+beard, starts at left facing right */
@keyframes walk-path-a {
  0%   { left: 5px;    transform: scaleX(1); }
  44%  { left: 1663px; transform: scaleX(1); }
  50%  { left: 1663px; transform: scaleX(-1); }
  94%  { left: 5px;    transform: scaleX(-1); }
  100% { left: 5px;    transform: scaleX(1); }
}
/* B: black hair, starts at right facing left */
@keyframes walk-path-b {
  0%   { left: 1663px; transform: scaleX(-1); }
  44%  { left: 5px;    transform: scaleX(-1); }
  50%  { left: 5px;    transform: scaleX(1); }
  94%  { left: 1663px; transform: scaleX(1); }
  100% { left: 1663px; transform: scaleX(-1); }
}
.corr-label {
  font-size: 9px;
  color: #90B8C8;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 #000;
}

/* ══════════════════════════════════
   ROOMS
══════════════════════════════════ */
.room {
  background: var(--floor);
  position: relative;
  overflow: hidden;
  border: 2px solid #3D1E0A;
}

/* Subtle floor tile */
.room::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}

/* Clickable rooms get hover */
.clickable { cursor: pointer; }
.clickable:hover { filter: brightness(1.07); }
.clickable:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,180,0.06);
  pointer-events: none;
  z-index: 10;
}

/* Meeting rooms: no hover, no cursor */
.meeting-room { cursor: default; }

/* Room name badge */
.room-name {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: rgba(36, 22, 8, 0.42);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.95);
  color: #F0D890;
  font-size: 9px;
  text-align: center;
  padding: 3px 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}
/* Bottom-row rooms: name at the bottom boundary */
.room-name-btm {
  top: auto;
  bottom: 0;
}

/* Manager role badge */
.room-role {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  background: rgba(36, 22, 8, 0.70);
  color: #C8B080;
  font-size: 7px;
  text-align: center;
  padding: 3px;
  z-index: 5;
}

/* Door strip at bottom */
.door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 7px;
  background: #5C3018;
  z-index: 5;
}
.door::before {
  content: '';
  position: absolute;
  inset: 1px 2px;
  background: #6A4A2A;
}

/* Door strip at top — bottom-row rooms face corridor from above */
.door-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 7px;
  background: #5C3018;
  z-index: 5;
}
.door-top::before {
  content: '';
  position: absolute;
  inset: 1px 2px;
  background: #6A4A2A;
}

/* Bottom-row workstation: visitor near door (top), person far (bottom) */
.ws-btm-center {
  left: 50%;
  transform: translateX(-50%);
  top: 14px;
  flex-direction: column-reverse;
}

/* Windows on exterior (bottom) wall for bottom-row rooms, flush above name tag */
.wins.wins-btm { top: auto; bottom: 14px; }

/* ── Windows ── */
.wins {
  position: absolute;
  top: 14px;
  left: 6px;
  display: flex;
  gap: 4px;
  z-index: 4;
}
.wins.small { } /* one window, same positioning */
.win {
  width: 22px;
  height: 16px;
  background: var(--win);
  border: 2px solid var(--win-frame);
  box-shadow: inset 1px 1px 0 rgba(255,255,255,0.5), 1px 1px 0 var(--wall-dark);
}
.win::after {
  content: '';
  display: block;
  width: 100%; height: 50%;
  border-bottom: 1px solid var(--win-frame);
}

/* ══════════════════════════════════
   FURNITURE WRAPPER
══════════════════════════════════ */
.room-furn {
  position: absolute;
  top: 37px;      /* below name + windows */
  left: 4px;
  right: 4px;
  bottom: 22px;   /* above door/role */
}

/* ── Workstation unit (flex column: head → chair → desk → visitor) ── */
.ws {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 47px;
}
.ws-left  { left: 11px;  top: 22px; }
.ws-right { right: 11px; top: 22px; }
.ws-center {
  left: 50%;
  transform: translateX(-50%);
  top: 14px;
}
.dir-ws { width: 67px; }

/* Person head */
.ws-head {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
}

/* Manager chair */
.ws-chair {
  width: 14px;
  height: 10px;
  background: var(--chair);
  border: 2px solid var(--chair-dk);
  box-shadow: 1px 1px 0 var(--chair-dk);
  flex-shrink: 0;
}
.wide-chair { width: 21px; }

/* Desk surface */
.ws-desk {
  width: 47px;
  height: 32px;
  background: var(--desk);
  border: 2px solid var(--desk-dark);
  box-shadow: 2px 2px 0 var(--desk-dark);
  flex-shrink: 0;
  position: relative;
}
.large-desk {
  width: 67px;
  height: 41px;
}

/* Paper on desk */
.paper {
  position: absolute;
  top: 4px; left: 5px;
  width: 13px; height: 9px;
  background: #F0EAD0;
  border: 1px solid #C0B080;
}
.wide-paper {
  width: 18px; height: 11px;
  top: 5px; left: 8px;
}

/* Visitor chair below desk */
.ws-visitor {
  width: 13px;
  height: 10px;
  background: var(--chair);
  border: 2px solid var(--chair-dk);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Two visitor chairs side by side (director room) */
.visitor-row {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.visitor-row .ws-visitor { margin-top: 0; }

/* ══════════════════════════════════
   DIRECTOR ROOM EXTRAS
══════════════════════════════════ */
.director-room { background: #DFD0A0; }  /* slightly warmer floor */

/* MLCC Plaque on the wall */
.mlcc-plaque {
  position: absolute;
  top: 14px;
  right: 5px;
  width: 36px;
  height: 44px;
  background: #08182E;
  border: 2px solid #C8A020;
  box-shadow: 2px 2px 0 #000, inset 0 0 0 2px #08182E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 6;
}
.p-main {
  font-family: var(--px);
  font-size: 9px;
  color: #E8C030;
  letter-spacing: 1px;
}
.p-line {
  width: 24px;
  height: 1px;
  background: #C8A020;
}
.p-sub {
  font-family: var(--px);
  font-size: 6px;
  color: #6898B0;
  text-align: center;
  line-height: 1.7;
}

/* ══════════════════════════════════
   MEETING ROOMS (chairs only)
══════════════════════════════════ */
.meet-tbl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 50px;
  background: rgba(180,155,100,0.22);
  border: 2px dashed rgba(120,90,50,0.35);
}

/* Meeting chair */
.mc {
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--chair);
  border: 2px solid var(--chair-dk);
  box-shadow: 1px 1px 0 var(--chair-dk);
}

/* ══════════════════════════════════
   CHAT MODAL — admin portal theme
══════════════════════════════════ */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(26,24,16,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.modal-bg.hidden { display: none; }

.chat-panel {
  width: 860px;
  height: 580px;
  background: #F7F4EE;
  border: 1px solid #DDD8CE;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: row;
  font-family: var(--px);
  overflow: hidden;
}

/* ── Sidebar ── */
.chat-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: #EEEAE2;
  border-right: 1px solid #DDD8CE;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-bottom: 1px solid #DDD8CE;
  flex-shrink: 0;
}
.sidebar-title {
  font-size: 10px;
  font-weight: 700;
  color: #6A6050;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn-new-chat {
  background: #2097D1;
  border: none;
  color: #fff;
  font-family: var(--px);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 11px;
  cursor: pointer;
  letter-spacing: 0.5px;
  border-radius: 2px;
}
.btn-new-chat:hover { background: #1A80B8; }

/* Dept picker */
.dept-picker {
  padding: 8px 10px;
  border-bottom: 1px solid #DDD8CE;
  background: #F7F4EE;
  flex-shrink: 0;
}
.dept-picker.hidden { display: none; }
.dept-select {
  width: 100%;
  border: 1px solid #C8C6C4;
  background: #fff;
  font-family: var(--px);
  font-size: 10px;
  color: #1A1810;
  outline: none;
  cursor: pointer;
}
.dept-select option { padding: 4px 8px; }
.dept-select:focus { border-color: #2097D1; }

/* Session list */
.session-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: #DDD8CE #EEEAE2;
}
.sess-empty {
  padding: 22px 14px;
  font-size: 10px;
  color: #B0A898;
  text-align: center;
  line-height: 2;
}
.sess-item {
  display: flex;
  flex-direction: column;
  padding: 9px 12px 9px 14px;
  cursor: pointer;
  border-left: 3px solid transparent;
  position: relative;
  gap: 2px;
  flex-shrink: 0;
}
.sess-item:hover { background: #E4E0D8; }
.sess-item.active { background: #ffffff; border-left-color: #2097D1; }
.sess-dept-name {
  font-size: 10px;
  font-weight: 700;
  color: #1A1810;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 18px;
}
.sess-preview {
  font-size: 9px;
  color: #8A8070;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sess-time {
  font-size: 8px;
  color: #B0A898;
  letter-spacing: 0.3px;
  margin-top: 1px;
}
.sess-del {
  position: absolute;
  top: 7px;
  right: 5px;
  background: none;
  border: none;
  color: #C8C0B0;
  font-size: 15px;
  cursor: pointer;
  padding: 1px 4px;
  line-height: 1;
  display: none;
  border-radius: 2px;
}
.sess-item:hover .sess-del { display: block; }
.sess-del:hover { color: #C04040; background: #F0EDE4; }

/* ── Main chat area ── */
.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
}

.chat-bar {
  background: #EEEAE2;
  border-bottom: 1px solid #DDD8CE;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.chat-bar-left { display: flex; flex-direction: column; gap: 2px; }
.chat-bar-right { display: flex; align-items: center; gap: 5px; }
.chat-dept { font-size: 13px; font-weight: 700; color: #1A1810; }
.chat-role-label { font-size: 10px; color: #8A8070; }

.btn-minimize {
  background: none;
  border: 1px solid #C8C6C4;
  color: #6A6050;
  font-family: var(--px);
  font-size: 13px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  line-height: 1;
}
.btn-minimize:hover { background: #DDD8CE; }

.btn-close {
  background: none;
  border: 1px solid #C8C6C4;
  color: #6A6050;
  font-family: var(--px);
  font-size: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  line-height: 1;
}
.btn-close:hover { background: #C04040; color: #fff; border-color: #C04040; }

/* Minimized session chip */
.chat-chip {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #ffffff;
  border: 1px solid #DDD8CE;
  border-left: 3px solid #2097D1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 300;
  font-family: var(--px);
}
.chat-chip.hidden { display: none; }
.chat-chip:hover { background: #F7F4EE; }
.chat-chip-icon { font-size: 10px; color: #2097D1; }
.chat-chip-name { font-size: 10px; color: #1A1810; font-weight: 600; }
.chat-chip-label { font-size: 8px; color: #8A8070; letter-spacing: 1.5px; }

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: #DDD8CE #ffffff;
}

.msg {
  max-width: 82%;
  padding: 10px 14px;
  font-size: 11px;
  line-height: 1.85;
  word-break: break-word;
  border-radius: 2px;
}
.msg.system {
  align-self: center;
  max-width: 92%;
  background: #F7F4EE;
  border: 1px solid #DDD8CE;
  color: #6A6050;
  text-align: center;
  font-size: 10.5px;
  font-style: italic;
}
.msg.user {
  align-self: flex-end;
  background: #E8F4FB;
  border: 1px solid #B0D8EF;
  border-left: 3px solid #2097D1;
  color: #0E4A6A;
}
.msg.agent {
  align-self: flex-start;
  background: #F7F4EE;
  border: 1px solid #DDD8CE;
  border-left: 3px solid #8A8070;
  color: #1A1810;
}
.msg.thinking {
  align-self: flex-start;
  background: #F7F4EE;
  border: 1px dashed #C8C6C4;
  color: #B0A898;
  font-size: 10px;
  font-style: italic;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.chat-footer {
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  border-top: 1px solid #DDD8CE;
  background: #F7F4EE;
  flex-shrink: 0;
}
#chatInput {
  flex: 1;
  background: #ffffff;
  border: 1px solid #C8C6C4;
  color: #1A1810;
  font-family: var(--px);
  font-size: 11px;
  padding: 9px 12px;
  outline: none;
  border-radius: 2px;
}
#chatInput:focus { border-color: #2097D1; box-shadow: 0 0 0 1px #2097D1; }
#chatInput::placeholder { color: #B0A898; }
.btn-send {
  background: #2097D1;
  border: none;
  color: #fff;
  font-family: var(--px);
  font-size: 11px;
  font-weight: 600;
  padding: 9px 20px;
  cursor: pointer;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 2px;
}
.btn-send:hover { background: #1A80B8; }
.btn-send:active { opacity: 0.9; }
