@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Main glass panel */
.glass-container {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--surface-1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 320px;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--text-1);
}


/* Layout columns */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-column,
.editor-column,
.preview-column {
  width: 100%;
}

.editor-column,
.preview-column {
  display: flex;
  flex-direction: column;
  min-height: 670px;
}

.notes-panel-header {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.notes-panel-label {
  margin: 0;
}

.notes-panel-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.header a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease;
}

.header a:hover {
  color: #fff;
  background: linear-gradient(180deg, var(--accent), var(--accent-600));
  border-color: rgba(39, 161, 255, 0.65);
  transform: translateY(-1px);
}

.header h1 {
  font-weight: 700;
  font-size: 1.9rem;
  margin: 0;
  flex-grow: 1;
  color: var(--text-1);
  letter-spacing: 0.03em;
}

.video-search-group {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.95rem;
  overflow: hidden;
  background: var(--surface-2);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.video-search-group:focus-within {
  border-color: var(--accent);
  box-shadow: var(--ring);
  background: color-mix(in srgb, var(--surface-2) 85%, var(--accent) 15%);
}

.video-search-icon {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding-left: 0.9rem;
}

.video-search-input {
  background: transparent;
  color: var(--text-1);
  box-shadow: none;
}

.video-search-input::placeholder {
  color: var(--muted);
}

.video-search-input:focus {
  background: transparent;
  color: var(--text-1);
  box-shadow: none;
}

.video-search-clear {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: var(--text-2);
  background: color-mix(in srgb, var(--surface-2) 92%, var(--surface-1) 8%);
}

.video-search-clear:hover,
.video-search-clear:focus-visible {
  color: var(--text-1);
  background: color-mix(in srgb, var(--surface-2) 78%, var(--accent) 22%);
}

.video-search-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.video-search-pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(39, 161, 255, 0.5);
  animation: video-search-pulse 1.35s ease-out infinite;
}

@keyframes video-search-pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(39, 161, 255, 0.45);
    opacity: 0.95;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 0.5rem rgba(39, 161, 255, 0);
    opacity: 1;
  }

  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(39, 161, 255, 0);
    opacity: 0.88;
  }
}

[data-bs-theme="light"] .video-search-group {
  border-color: rgba(14, 17, 22, 0.12);
}

[data-bs-theme="light"] .video-search-clear {
  border-left-color: rgba(14, 17, 22, 0.08);
}

[data-bs-theme="light"] .video-scheduled-badge {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(14, 17, 22, 0.1);
}

[data-bs-theme="light"] .video-scheduled-badge-label {
  color: rgba(14, 17, 22, 0.58);
}

[data-bs-theme="light"] .video-scheduled-badge-date {
  color: var(--text-1);
}

/* Image section */
.image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.video-media-frame {
  position: relative;
  width: 360px;
  max-width: 100%;
}

.video-preview,
.video-image,
.img-placeholder {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 0;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--surface-3);
}

.video-preview,
.video-image {
  display: block;
  object-fit: cover;
}

.video-poster-button {
  width: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  cursor: pointer;
}

.video-poster-button:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.video-poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-poster-play i {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.video-poster-button:hover .video-poster-play i {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.68);
}

.video-preview {
  background: #000;
}

.video-scheduled-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  max-width: calc(100% - 1.4rem);
  padding: 0.4rem 0.55rem;
  border-radius: 0.7rem;
  background: rgba(12, 17, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.video-scheduled-badge-label {
  font-size: 0.58rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.video-scheduled-badge-date {
  font-size: 0.72rem;
  line-height: 1.15;
  font-weight: 600;
  color: #fff;
}

.img-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  font-size: 2.4rem;
}

/* File input */
.image-section input[type="file"] {
  width: 100%;
  border-radius: 0.85rem;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-1);
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.08s ease;
}

.image-section input[type="file"]:hover {
  background: color-mix(in srgb, var(--surface-2) 80%, var(--accent) 20%);
  border-color: rgba(39, 161, 255, 0.55);
  box-shadow: 0 0 0 1px var(--accent-25a);
  transform: translateY(-0.5px);
}

.image-section input[type="file"]::file-selector-button {
  margin-right: 0.6rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, var(--accent), var(--accent-600));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-section small {
  color: var(--muted);
}

/* Form details */
.details-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
  color: var(--text-2);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Inputs / selects / textareas */
input[type="text"],
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface-2);
  color: var(--text-1);
  font-size: 0.98rem;
  font-weight: 400;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    transform 0.06s ease;
  resize: vertical;
}

input[type="text"]::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input[type="text"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--ring);
  background: color-mix(in srgb, var(--surface-2) 85%, var(--accent) 15%);
  transform: translateY(-0.5px);
}

textarea {
  min-height: 90px;
  max-height: 180px;
}

/* Actions row */
.actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Primary button */
button.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-600));
  border: none;
  padding: 0.6rem 2.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow:
    0 10px 24px var(--accent-25a),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    transform 0.1s ease,
    box-shadow 0.18s ease,
    filter 0.15s ease;
}

button.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px var(--accent-25a),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  filter: brightness(1.02);
}

button.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow:
    0 7px 18px var(--accent-25a),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

button.btn-primary:disabled {
  background: linear-gradient(180deg, #4b5563, #374151);
  cursor: not-allowed;
  opacity: 0.8;
  box-shadow: none;
}

/* Secondary / outline button */
a.btn-outline-light {
  color: var(--text-1);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 0.55rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  background: var(--surface-2);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease;
}

a.btn-outline-light:hover {
  background: linear-gradient(180deg, var(--accent), var(--accent-600));
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}

/* Spinner inside buttons */
.spinner-border {
  width: 1.25rem;
  height: 1.25rem;
  border-width: 0.15em;
  color: #e5e7f8;
}

/* Alerts */
.alerts {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
}

.alert-danger {
  background-color: rgba(239, 68, 68, 0.16);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.8);
}

.alert-success {
  background-color: rgba(22, 163, 74, 0.18);
  color: #bbf7d0;
  border: 1px solid rgba(74, 222, 128, 0.75);
}

/* Editor styles */
.EasyMDEContainer {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.CodeMirror {
  flex: 1;
  height: auto;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface-3);
  color: var(--text-1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 0 10px 10px;
  font-size: 0.95rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace;
  overflow: auto;
}

.CodeMirror:focus {
  box-shadow: var(--ring);
  outline: none;
}

.editor-toolbar {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--surface-3);
  color: var(--text-1);
}

.editor-toolbar a {
  color: var(--text-1) !important;
}

.editor-toolbar a:hover,
.editor-toolbar a.active {
  background: color-mix(in srgb, var(--surface-3) 75%, var(--accent) 25%) !important;
}

.CodeMirror-cursor {
  border-left: 1px solid #f9fafb;
}

/* Markdown preview */
#html-preview {
  flex: 1;
  height: auto;
  min-height: 0;
  padding: 20px;
  border-radius: 10px;
  font-size: 0.98rem;
  transition: box-shadow 0.25s ease, transform 0.08s ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface-3);
  color: var(--text-1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow-y: auto;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
}

#html-preview h1,
#html-preview h2,
#html-preview h3,
#html-preview h4,
#html-preview h5,
#html-preview h6 {
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: var(--text-1);
  border-bottom: 1px solid rgba(148, 163, 184, 0.8);
  padding-bottom: 0.3em;
}

#html-preview code {
  background: rgba(15, 23, 42, 0.9);
  padding: 2px 4px;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace;
}

#html-preview pre {
  background: rgba(15, 23, 42, 0.9);
  padding: 15px;
  border-radius: 6px;
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.8);
}

#html-preview blockquote {
  margin: 1em 0;
  padding: 0 15px;
  color: var(--text-2);
  border-left: 4px solid rgba(148, 163, 184, 0.8);
}

#html-preview ul,
#html-preview ol {
  padding-left: 20px;
  margin: 1em 0;
}

#html-preview a {
  color: var(--accent);
  text-decoration: none;
}

#html-preview a:hover {
  text-decoration: underline;
}

#html-preview table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

#html-preview th,
#html-preview td {
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 8px;
}

#html-preview th {
  background: rgba(15, 23, 42, 0.9);
  text-align: left;
}

#html-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Toggle button (e.g. show/hide preview) */
.toggle-button {
  background: linear-gradient(180deg, var(--accent), var(--accent-600));
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.1s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
  box-shadow: 0 8px 18px var(--accent-25a);
}

.toggle-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 22px var(--accent-25a);
}

/* Responsive layout */
@media (min-width: 1200px) {
  .content-wrapper {
    flex-direction: row;
    gap: 2rem;
  }

  .form-column {
    flex: 0 0 408px;
    max-width: 408px;
  }

  .editor-column,
  .preview-column {
    flex: 1;
  }
}

@media (max-width: 1199px) {
  .content-wrapper {
    flex-direction: column;
  }

  .form-column,
  .editor-column,
  .preview-column {
    max-width: none;
    min-height: auto;
  }

  .CodeMirror,
  #html-preview {
    min-height: 300px;
  }

  .CodeMirror {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .glass-container {
    padding: 1rem 0.5rem;
  }

  .image-section,
  .details-section {
    align-items: flex-start;
  }

  .video-preview,
  .video-image,
  .img-placeholder {
    width: 100%;
    max-width: 396px;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .video-poster-button {
    width: 100%;
    max-width: 396px;
  }

  .video-media-frame {
    width: 100%;
    max-width: 396px;
  }

  .actions {
    justify-content: center;
  }
}

/* Prettier custom select for visibility */
.details-section select#video-visibility {
  padding: 0.5rem 2.2rem 0.5rem 1rem;
  min-width: 160px;
  font-size: 1.07rem;
  font-weight: 600;
  color: var(--text-1);
  background: color-mix(in srgb, var(--surface-2) 80%, var(--accent) 20%);
  border: none;
  border-radius: 0.85rem;
  box-shadow: 0 6px 16px var(--accent-25a);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.18s, box-shadow 0.18s;
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.3em;
}

.details-section select#video-visibility:focus {
  background: color-mix(in srgb, var(--surface-2) 70%, var(--accent) 30%);
  color: #fff;
  box-shadow: 0 8px 20px var(--accent-25a);
}

/* Tag input styles */
.tag-input {
  min-height: 38px;
  border-radius: 0.75rem;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding-inline: 0.4rem;
}

.tag-input input {
  min-width: 100px;
  background: transparent;
  border: none;
  color: var(--text-1);
}

.tag-input input:focus {
  outline: none;
}



.list-group-item {
  
  color: var(--text-1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.list-group-item:hover {
  background: color-mix(in srgb, var(--surface-3) 80%, var(--accent) 20%);
}

.list-group-item.active {
  background: linear-gradient(180deg, var(--accent), var(--accent-600));
  color: #fff;
}

/* Bible address multi-input style */
.bible-address-input {
  min-height: 42px;
  gap: 0.375rem;
  cursor: text;
  align-items: center;
}

.bible-address-input input {
  min-width: 180px;
}

/* Suggestions dropdown */
.suggestions {
  max-height: 220px;
  overflow: auto;
}

.badge i {
  cursor: pointer;
}

/* Chat inside app */
.chat-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Messages area */
.chat-messages {
  max-height: 280px;
  overflow-y: auto;
  padding: 0.5rem;
  background: var(--surface-3);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Chat bubbles */
.chat-bubble {
  display: block;
  width: fit-content;
  padding: 0.6rem 0.85rem;
  border-radius: 1rem;
  margin: 0.35rem 0;
  max-width: 100%;
  word-wrap: break-word;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* AI (left) bubble */
.chat-bubble.ai {
  background: color-mix(in srgb, var(--surface-3) 75%, var(--accent) 25%);
  border: 1px solid rgba(39, 161, 255, 0.55);
  margin-right: auto;
}

/* User (right) bubble */
.chat-bubble.user {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-left: auto;
}

/* Markdown inside bubbles */
.chat-bubble :is(p, ul, ol, pre, code, blockquote, h1, h2, h3, h4, h5, h6) {
  margin: 0.35rem 0;
}

.chat-bubble pre {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  overflow: auto;
}

.chat-bubble code {
  background: rgba(0, 0, 0, 0.25);
  padding: 0 0.3rem;
  border-radius: 0.3rem;
}

/* Chat input row stays visible */
.chat-input {
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  padding-top: 0.5rem;
}

.chat-input-form {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.chat-input-form:focus-within {
  border-color: rgba(39, 161, 255, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.chat-text-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  line-height: 1.3;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.chat-text-input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.chat-text-input:focus,
.chat-text-input:active {
  outline: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.chat-send-button {
  flex: 0 0 auto;
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #27a1ff, #0f7fe2);
  box-shadow: none;
  transition: transform 0.18s ease, filter 0.18s ease, opacity 0.18s ease;
}

.chat-send-button:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.chat-send-button:focus-visible {
  outline: 2px solid rgba(39, 161, 255, 0.45);
  outline-offset: 2px;
}

.chat-send-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
