/* =========================
   LIGHT DISCORD-LIKE THEME
========================= */

/* =========================
   COLORS
========================= */
:root {
  --bg-main: #ffffff;        /* hlavné pozadie */
  --bg-content: #f8f8f8;     /* pozadie správy */
  --bg-input: #f0f0f0;       /* pozadie textarea */
  --bg-users: #e0e0e0;       /* panel užívateľov */
  --border: #cdcdcd;         /* linky a hrany */
  --text: #333333;           /* hlavný text */
  --text-muted: #666666;     /* drobný text */
  --accent: #5865f2;         /* tlačidlá, linky */
}

/* =========================
   HLAVNÝ LAYOUT
========================= */
div.pfc-content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: var(--bg-main);
  font-family: Arial, sans-serif;
}

/* skrytie pôvodných donate / powered */
.bt-powered,
.bt-donate {
  display: none;
}

/* =========================
   CONTENT – SPRÁVY HORE
========================= */
div.pfc-messages {
  order: 1;
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  font-size: 16px;
  background: var(--bg-content);
  color: var(--text);
}

/* správa */
.messages-group .message {
  line-height: 1.45;
  word-wrap: break-word;
}

/* meno užívateľa */
.messages-group .name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

/* dátum / čas správy */
.messages-group .date {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

/* =========================
   INPUT – HNEĎ POD CONTENTOM
========================= */
div.pfc-compose {
  order: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: var(--bg-input);
  border-top: 1px solid var(--border);
}

/* textarea */
div.pfc-compose textarea {
  flex: 1;
  height: 48px;
  resize: none;
  font-size: 16px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--text);
}

/* =========================
   SEND BUTTON (MOBILE)
========================= */
.pfc-send-btn {
  display: none;
  padding: 0 16px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   USERS PANEL – ÚPLNE DOLE
========================= */
div.pfc-users {
  order: 3;
  height: 120px;
  background: var(--bg-users);
  border-top: 1px solid var(--border);
  overflow-x: auto;
  display: flex;
  align-items: center;
}

div.pfc-users ul {
  display: flex;
  flex-direction: row;
  padding: 8px;
  margin: 0;
  list-style: none;
}

div.pfc-users ul li {
  min-width: 96px;
  margin-right: 8px;
  padding: 6px;
  background: #d8d8d8;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

  /* zobraz send button */
  .pfc-send-btn {
    display: block;
  }

  div.pfc-compose textarea {
    font-size: 17px;
    height: 52px;
  }

  div.pfc-users {
    height: 100px;
  }

  div.pfc-users ul li {
    min-width: 80px;
    font-size: 13px;
  }
}
