/* ─── AIM widget ──────────────────────────────────────────────── */

.aim-window {
  width: 300px;
  border: 1px solid #555555;
  background-color: #d6d6ce;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  margin: 12px 0;
  box-shadow: 1px 1px 0 #ffffff, -1px -1px 0 #808080;
  user-select: none;
  border-top:    2px solid #ffffff;
  border-left:   2px solid #ffffff;
  border-right:  2px solid #404040;
  border-bottom: 2px solid #404040;
  box-shadow: 1px 1px 0 #000;
}

.aim-title-bar {
  background: linear-gradient(to right, #004a9f, #0b71d9); /* intentional Win98 blue */
  color: #ffffff;
  padding: 3px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aim-title-left {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}

.aim-icon {
  width: 20px;
  height: 20px;
  image-rendering: normal;
}

.aim-controls {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 11px;
}

.aim-menu {
  background-color: #d6d6ce;
  padding: 2px 6px 0 6px;
  font-family: 'MS Sans Serif', Tahoma, sans-serif; color: #000;
  font-size: 11px;
}

.aim-menu span {
  margin-right: 12px;
}

.aim-chat-history {
  background-color: #ffffff;
  border: 1px inset #aaaaaa;
  margin: 4px;
  padding: 6px 6px 10px 6px;
  height: 100px;
  overflow-y: auto;
}

.aim-msg-header {
  color: #0000cc; /* intentional AIM blue */
  font-weight: bold;
}

.aim-msg-body {
  color: #000000;
  font-weight: bold;
}

.aim-input-container {
  display: flex;
  padding: 4px;
  background-color: #d6d6ce;
  gap: 4px;
}

.aim-input-box {
  flex-grow: 1;
  height: 23px;
  background-color: #ffffff;
  border: 1px inset #aaaaaa;
  padding: 4px;
  font-family: inherit;
  font-size: 12px;
  overflow-y: auto;
  outline: none;
}

.aim-send-btn {
  height: auto;
  width: 60px;
  margin: 0;
  background-color: #d6d6ce;
  font-family: 'MS Sans Serif', Tahoma, sans-serif;
  font-size: 11px;
  cursor: pointer;
  border-top:    2px solid #ffffff;
  border-left:   2px solid #ffffff;
  border-right:  2px solid #404040;
  border-bottom: 2px solid #404040;
  box-shadow: 1px 1px 0 #000;
}

.aim-send-btn:active {
  box-shadow: inset 1px 1px #808080, 1px 1px #fff;
  padding-top: 2px;
}

.aim-history,
#input-box {
  background: #ffffff;
  border: 2px inset #ffffff;
  padding: 4px;
  margin: 4px;
  overflow-y: auto;
}

.aim-history { height: 120px; }

#input-box {
  flex: 1;
  height: 23px;
  margin: 0;
  outline: none;
}

.aim-toolbar {
  display: flex;
  gap: 10px;
  padding: 2px 8px;
  border-top: 1px solid #808080;
  font-family: serif; color: #000;
  font-weight: bold;
}

.aim-input-area {
  display: flex;
  align-items: stretch;
  padding: 4px;
}

.aim-input-area #input-box {
  color: #000000;
}

.maow-header  { color: #0000cc; font-weight: bold; } /* intentional AIM blue */
.genius-header { color: #ff0000; font-weight: bold; }

.msg      { margin-bottom: 4px; }
.msg-body { color: #000000; font-weight: bold; }