﻿/* Generated from style.scss */

/* Login screen styles */
.login-page {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.login-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn-google {
  background: white;
  color: #444;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-google:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: #f8f8f8;
}

/* Dashboard global */
.dashboard-body {
  background-color: #f8f9fa;
}

.sidebar {
  height: calc(100vh - 56px);
  overflow-y: auto;
  border-right: 1px solid #dee2e6;
  background: white;
}

.markdown-body {
  padding: 45px;
  background: white;
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .markdown-body {
    padding: 15px;
  }
}

.markdown-body img {
  max-height: 500px;
  object-fit: contain;
  width: auto;
  display: block;
  margin: 2rem auto;
}

.tag {
  font-size: 0.7rem;
  background: #ddd;
  padding: 2px 6px;
  border-radius: 10px;
  margin-right: 4px;
}

.list-group-item.active {
  background-color: #2a5298;
  border-color: #2a5298;
}

/* TTS highlight styles */
.reading-highlight {
  background-color: rgba(255, 235, 59, 0.5);
  box-shadow: 3px 0 0 rgba(255, 235, 59, 0.5), -3px 0 0 rgba(255, 235, 59, 0.5);
  border-radius: 0;
  transition: background-color 0.1s ease;
}

.fixed-bottom-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2000;
}

.fixed-bottom-right .btn {
  width: 50px;
  height: 50px;
}

.rounded-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rounded-circle:hover {
  transform: scale(1.05);
}

.rounded-circle i {
  line-height: 1;
  display: block;
}

#speakIcon {
  font-size: 1.5rem;
}

/* Navbar helper (override bootstrap flex-wrap) */
.navbar .container-fluid {
  flex-wrap: unset !important;
}
