body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.background {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #ff6a00, #ee0979, #00c6ff, #0072ff);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.signup-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.signup-box h1 {
  margin-bottom: 20px;
}

.signup-box label {
  display: block;
  text-align: left;
  margin-top: 10px;
}

.signup-box input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.signup-box button {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background: #0072ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.signup-box button:hover {
  background: #0056cc;
}

.signup-box p {
  margin-top: 15px;
}

.signup-box a {
  color: #0072ff;
  text-decoration: none;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;

    background: linear-gradient(135deg, #aae08f, #a8edea, #fed6e3, #a6c1ee, #e8e7a2);
}

/*detail*/

/* Outer pastel background */
.outer-container {
    padding: 50px;
}

/* White container */
.main-box {
    background: white;
    min-height: calc(100vh - 40px);
    border-radius: 50px;
    padding: 40px;
}

/* Heading */
h1 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

/* Inputs */
input, select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Button */
.submit-btn {
    margin-top: 20px;
    align-self: flex-end;
    background: blue;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* ================= DASHBOARD ================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;

  /* Animated gradient background */
  background: linear-gradient(-45deg, #aae08f, #a8edea, #fed6e3, #a6c1ee, #e8e7a2, #567846, #699f9c, #b44367, #2d3d57, #c9c742);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Layout */
.container {
  display: flex;
  height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 250px;
  background: #1E3A8A;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo {
  text-align: center;
  padding: 20px;
}

.logo img {
  width: 60px;
  margin-bottom: 10px;
}

.logo h2 {
  font-weight: bold;
}

/* Menu */
.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.sidebar ul li:hover {
  background: #1e293b;
}

.sidebar ul li.active {
  background: #2563eb;
}

/* Sidebar menu text */
.sidebar ul li a {
    color: #f0f0f0;   /* Light gray text */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Change color on hover */
.sidebar ul li a:hover {
    color: #ffcc00;   /* Golden yellow on hover */
}

/* Active menu item */
.sidebar ul li.active a {
    color: #ffffff;   /* White for active */
    font-weight: bold;
}

/* Bottom menu */
.bottom-menu {
  padding: 20px;
}

.bottom-menu li {
  list-style: none;
  padding: 10px;
  cursor: pointer;
}

.bottom-menu li:hover {
  background: #1e293b;
}

/* ===== MAIN CONTENT ===== */
.main {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

/* ===== TOPBAR ===== */
.topbar {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.topbar h2 {
  margin: 0;
}

.topbar p {
  color: gray;
  margin-top: 5px;
}

/* ===== COUNTDOWN CARDS ===== */
.cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.card {
  flex: 1;
  padding: 20px;
  border-radius: 15px;
  color: white;
  text-align: center;
  font-size: 18px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 22px;
}

.orange {
  background: linear-gradient(135deg, #60A5FA, #457758);
}

.green {
  background: linear-gradient(135deg, #FDE68A, #3d759f);
}

.blue {
  background: linear-gradient(135deg, #E5E7EB, #7450b2);
}

/* ===== MIDDLE SECTION ===== */
.middle {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Targets */
.targets {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.targets h3 {
  margin-bottom: 15px;
}

.targets div {
  margin-bottom: 10px;
}

/* Consistency */
.consistency {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.consistency h2 {
  margin-top: 15px;
  color: #FFE5B4;
}

/* ===== SUBJECT PROGRESS ===== */
.subjects {
  margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.subject {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.subject span {
  width: 120px;
}

/* Progress bar */
.progress-bar {
  flex: 1;
  height: 10px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: #22c55e;
}

/* Consistency Tracker Progress Bar */
.consistency h3 {
    margin-bottom: 15px;
}

.streak h4 {
    margin: 5px 0;
}

.progress-container {
    margin-top: 10px;
}

.progress-bg {
    width: 100%;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #22c55e; /* green */
    width: 0; /* will be set dynamically */
    transition: width 0.5s ease-in-out;
}

.progress-text {
    display: block;
    text-align: right;
    margin-top: 5px;
    font-weight: bold;
    color: #333;
}

/* syllabus tracker/*

/* Top bar for syllabus */
.syllabus-topbar {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 22px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

/* Search box + button */
.syllabus-search {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.syllabus-search input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.toggle-buttons button {
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #1E3A8A;
    color: white;
}

.toggle-buttons button.active {
    background: #2563eb;
}

/* Checklist container */
.checklist-section {
    margin-bottom: 15px;
}

.checklist-section label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.checklist-subjects {
    margin-left: 20px;
}

.checklist-subjects label {
    font-weight: normal;
}

/* Checklist container with white background */
.checklist-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 10px;
}

/* Progress bar wrapper */
.progress-wrapper {
    margin-bottom: 15px;
}

.progress-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #22c55e;
    transition: width 0.5s ease-in-out;
}

/* ===== SUMMARY CARDS ABOVE PROGRESS BAR ===== */
.summary-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.summary-card {
  flex: 1;
  min-width: 220px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.summary-card h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #1e3a8a;
}

.summary-card p {
  margin: 8px 0;
  font-size: 16px;
  color: #444;
}

.highlight-percent {
  margin-top: 10px;
  font-size: 30px;
  font-weight: bold;
  color: #2563eb;
}

.total-card {
  border-top: 5px solid #2563eb;
}

.prelims-card {
  border-top: 5px solid #16a34a;
}

.mains-card {
  border-top: 5px solid #ea580c;
}

/* ===== TRACKER MAIN LAYOUT ===== */
.tracker-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.checklist-panel {
  flex: 2;
}

.overview-panel {
  flex: 1;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-height: 75vh;
  overflow-y: auto;
}

.overview-heading {
  color: #000;
  font-weight: bold;
  font-size: 24px;
  margin: 0 0 20px 0;
}

/* ===== OVERVIEW CATEGORY BLOCK ===== */
.overview-category-block {
  margin-bottom: 25px;
}

.overview-category-heading {
  font-size: 18px;
  font-weight: bold;
  color: #1e3a8a;
  margin: 0 0 14px 0;
  text-transform: none;
}

/* ===== SUBJECT ROW ===== */
.overview-subject-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.overview-subject-name {
  width: 42%;
  font-size: 14px;
  color: #222;
  text-transform: none;
}

.overview-progress-wrap {
  width: 58%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.overview-progress-bg {
  flex: 1;
  height: 10px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.overview-progress-fill {
  height: 100%;
  background: #2563eb;
  width: 0%;
  transition: width 0.4s ease-in-out;
}

.overview-progress-text {
  min-width: 42px;
  font-size: 13px;
  font-weight: bold;
  color: #1e3a8a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .tracker-layout {
    flex-direction: column;
  }

  .overview-panel {
    max-height: none;
    width: 100%;
  }
}

/* ================= STUDY PLANNER ================= */

.planner-topbar {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.planner-topbar h2 {
  margin: 0;
  font-size: 28px;
  color: #111827;
}

.planner-topbar h2 {
  margin: 0;
  font-size: 28px;
  color: #111827;
}

.pomodoro-box {
  min-width: 320px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
}

.pomodoro-header {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.pomodoro-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.pomodoro-tab {
  border: none;
  background: #dbeafe;
  color: #1e3a8a;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.pomodoro-tab.active {
  background: #2563eb;
  color: white;
}

.pomodoro-panel {
  display: none;
}

.pomodoro-panel.active {
  display: block;
}

.pomodoro-inputs {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.pomodoro-inputs input {
  flex: 1;
  text-align: center;
  font-weight: bold;
}

.pomodoro-display {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 12px 0;
  color: #111827;
}

.pomodoro-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pomodoro-actions button {
  border: none;
  background: #1e3a8a;
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.planner-datetime-card {
  margin-top: 20px;
  background: white;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.planner-datetime-card h3 {
  margin: 0;
  color: #111827;
  font-size: 20px;
}

.planner-calendar-card {
  margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.planner-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.planner-calendar-header h3 {
  margin: 0;
  color: #111827;
}

.more-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
}

.planner-week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.planner-day-block {
  border-radius: 16px;
  padding: 16px 12px;
  min-height: 150px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.planner-day-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.planner-day-block.selected {
  border-color: #1e3a8a;
}

.planner-day-top {
  font-weight: bold;
  margin-bottom: 8px;
  color: #111827;
}

.planner-day-number {
  font-size: 28px;
  font-weight: bold;
  color: #111827;
}

.planner-day-month {
  font-size: 14px;
  margin-bottom: 10px;
  color: #374151;
}

.planner-day-meta {
  font-size: 13px;
  color: #1f2937;
  margin-top: 6px;
}

.mini-add-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: none;
  background: rgba(255,255,255,0.8);
  color: #1e3a8a;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* Intensity levels */
.intensity-none {
  background: #f3f4f6;
}

.intensity-low {
  background: #dbeafe;
}

.intensity-medium {
  background: #93c5fd;
}

.intensity-high {
  background: #60a5fa;
}

.intensity-very-high {
  background: #2563eb;
  color: white;
}

.intensity-very-high .planner-day-top,
.intensity-very-high .planner-day-number,
.intensity-very-high .planner-day-month,
.intensity-very-high .planner-day-meta {
  color: white;
}

.planner-bottom-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.planner-chart-card,
.planner-targets-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-header-with-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.card-header-with-action h3 {
  margin: 0;
  color: #111827;
}

.hours-entry-box {
  margin-bottom: 20px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px;
}

.hours-entry-box label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #1f2937;
}

.hours-entry-row {
  display: flex;
  gap: 10px;
}

.hours-entry-row input {
  flex: 1;
}

.hours-entry-row button {
  border: none;
  background: #1e3a8a;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.add-task-btn {
  border: none;
  background: #2563eb;
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
}

.task-checkbox-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  cursor: pointer;
}

.task-checkbox-line input {
  width: 18px;
  height: 18px;
}

.task-text {
  color: #111827;
  font-size: 15px;
}

.task-text.completed {
  text-decoration: line-through;
  color: #6b7280;
}

.delete-task-btn {
  border: none;
  background: #fee2e2;
  color: #b91c1c;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
}

.empty-task-state {
  text-align: center;
  padding: 30px 15px;
  color: #6b7280;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: white;
  width: 90%;
  max-width: 420px;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-box h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.modal-box label {
  display: block;
  margin-bottom: 6px;
  margin-top: 12px;
  font-weight: bold;
}

.modal-box input {
  width: 100%;
  box-sizing: border-box;
}

.modal-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.modal-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  background: #2563eb;
  color: white;
}

.secondary-btn {
  background: #9ca3af !important;
}

@media (max-width: 1200px) {
  .planner-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .planner-week-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .planner-topbar {
    flex-direction: column;
  }

  .pomodoro-box {
    width: 100%;
  }
}
/* ================= STUDY PLANNER UPDATED ================= */

.planner-topbar {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

  display: flex;
  justify-content: space-between; /* 🔥 THIS pushes pomodoro to right */
  align-items: center;
}

.planner-title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.planner-title-wrap h2 {
  margin: 0;
  font-size: 28px;
  color: #111827;
}

.pomodoro-open-btn {
  border: none;
  background: #1e3a8a;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.planner-datetime-card {
  margin-top: 20px;
  background: white;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.planner-datetime-card h3 {
  margin: 0;
  color: #111827;
  font-size: 20px;
}

.planner-calendar-card {
  margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.planner-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.planner-calendar-header h3 {
  margin: 0;
}

.more-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
}

.planner-week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.planner-day-block {
  border-radius: 16px;
  padding: 16px 12px;
  min-height: 165px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  border: 2px solid transparent;
}

.planner-day-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.planner-day-block.selected {
  border-color: #1e3a8a;
}

.planner-day-top {
  font-weight: bold;
  margin-bottom: 8px;
}

.planner-day-number {
  font-size: 30px;
  font-weight: bold;
}

.planner-day-month {
  font-size: 14px;
  margin-bottom: 10px;
}

.planner-day-meta {
  font-size: 13px;
  margin-top: 6px;
}

.mini-add-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #1e3a8a;
  padding: 7px 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
}

.intensity-none {
  background: #f3f4f6;
}

.intensity-low {
  background: #dbeafe;
}

.intensity-medium {
  background: #93c5fd;
}

.intensity-high {
  background: #60a5fa;
}

.intensity-very-high {
  background: #2563eb;
  color: white;
}

.intensity-very-high .planner-day-top,
.intensity-very-high .planner-day-number,
.intensity-very-high .planner-day-month,
.intensity-very-high .planner-day-meta {
  color: white;
}

.planner-bottom-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.planner-chart-card,
.planner-targets-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-header-with-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.card-header-with-action h3 {
  margin: 0;
}

.hours-entry-box {
  margin-bottom: 20px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px;
}

.hours-entry-box label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.hours-entry-row {
  display: flex;
  gap: 10px;
}

.hours-entry-row input {
  flex: 1;
}

.hours-entry-row button {
  border: none;
  background: #1e3a8a;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.add-task-btn {
  border: none;
  background: #2563eb;
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.task-detailed-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.task-detailed-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.task-checkbox-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  cursor: pointer;
}

.task-title {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
}

.task-title.completed {
  text-decoration: line-through;
  color: #6b7280;
}

.task-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  color: #374151;
}

.delete-task-btn {
  border: none;
  background: #fee2e2;
  color: #b91c1c;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

.empty-task-state {
  text-align: center;
  padding: 30px 15px;
  color: #6b7280;
}

/* FULLSCREEN OVERLAYS */
.fullscreen-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 35, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.fullscreen-overlay.show {
  display: flex;
}

.fullscreen-panel {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eff6ff, #eef2ff, #f8fafc);
  border-radius: 24px;
  padding: 30px;
  overflow-y: auto;
}

.overlay-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.overlay-topbar h2 {
  margin: 0;
  color: #111827;
}

.close-overlay-btn {
  border: none;
  background: #1e293b;
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.month-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.month-nav button {
  border: none;
  background: #2563eb;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

/* POMODORO */
.pomodoro-mode-switch {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pomodoro-tab {
  border: none;
  background: #dbeafe;
  color: #1e3a8a;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.pomodoro-tab.active {
  background: #2563eb;
  color: white;
}

.pomodoro-mode {
  display: none;
}

.pomodoro-mode.active {
  display: block;
}

.full-pomodoro-inputs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.full-pomodoro-inputs input {
  width: 100px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 12px;
}

.circle-wrapper {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 20px auto;
}

.progress-ring {
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: #cbd5e1;
  stroke-width: 16;
}

.ring-progress {
  fill: none;
  stroke: #2563eb;
  stroke-width: 16;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s linear;
}

.circle-time {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: bold;
  color: #111827;
}

.full-pomodoro-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.full-pomodoro-actions button {
  border: none;
  background: #1e3a8a;
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

/* MONTH CALENDAR */
.month-panel {
  padding-bottom: 40px;
}

.month-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #1f2937;
}

.month-weekdays div {
  text-align: center;
  padding: 10px;
  background: #e0e7ff;
  border-radius: 10px;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.month-day-block {
  min-height: 140px;
  border-radius: 14px;
  padding: 12px;
  position: relative;
  border: 2px solid transparent;
  cursor: pointer;
}

.month-day-block.selected {
  border-color: #1e3a8a;
}

.month-day-block.empty {
  background: transparent;
  border: none;
  cursor: default;
}

.month-day-date {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.month-day-task {
  font-size: 13px;
  margin-bottom: 5px;
}

.month-add-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: none;
  background: rgba(255,255,255,0.95);
  color: #1e3a8a;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

/* TASK MODAL */
.task-modal-panel {
  width: 100%;
  max-width: 1000px;
  background: white;
  border-radius: 24px;
  padding: 30px;
  max-height: 95vh;
  overflow-y: auto;
}

.task-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.task-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.task-field label {
  font-weight: bold;
  color: #111827;
}

.task-field input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
}

.color-field input {
  height: 54px;
  padding: 4px;
}

.task-modal-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.task-modal-actions button {
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  background: #2563eb;
  color: white;
  font-weight: bold;
}

.secondary-btn {
  background: #9ca3af !important;
}

@media (max-width: 1200px) {
  .planner-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 950px) {
  .planner-week-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .month-grid,
  .month-weekdays {
    grid-template-columns: repeat(2, 1fr);
  }

  .task-form-grid,
  .task-details-grid {
    grid-template-columns: 1fr;
  }

  .circle-wrapper {
    width: 280px;
    height: 280px;
  }

  .progress-ring {
    width: 280px;
    height: 280px;
  }
}

/* ===== DASHBOARD TODAY TARGET FROM STUDY PLANNER ===== */

.targets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.targets-header h3 {
  margin: 0;
}

.dashboard-target-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.dashboard-target-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.dashboard-target-checkbox {
  margin-top: 4px;
  width: 18px;
  height: 18px;
}

.dashboard-target-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.dashboard-target-topic {
  font-size: 16px;
  font-weight: bold;
  color: #111827;
}

.dashboard-target-topic.completed {
  text-decoration: line-through;
  color: #6b7280;
}

.dashboard-target-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #374151;
}

.empty-target-state {
  text-align: center;
  padding: 20px 10px;
  color: #6b7280;
}

/* ===== DASHBOARD SUBJECT PROGRESS OVERVIEW ===== */

.dashboard-overview-card {
  margin-top: 20px;
}

.dashboard-subjects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dashboard-subjects-header h3 {
  margin: 0;
  color: #000;
  font-weight: bold;
}

.dashboard-overview-toggle {
  display: flex;
  gap: 10px;
}

.dashboard-overview-toggle button {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #1E3A8A;
  color: white;
  font-weight: bold;
}

.dashboard-overview-toggle button.active {
  background: #2563eb;
}

#dashboardOverviewContainer {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== DASHBOARD NEW LAYOUT ===== */

.consistency-horizontal {
  margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.consistency-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.consistency-title-block h3 {
  margin: 0 0 8px 0;
}

.streak-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 15px;
}

.consistency-bar-area {
  flex: 1;
  min-width: 280px;
}

.consistency-bar-area .progress-text {
  margin-top: 8px;
}

.dashboard-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.dashboard-bottom-grid .targets,
.dashboard-bottom-grid .subjects {
  margin-top: 0;
  height: 520px;
  overflow: hidden;
}

.dashboard-bottom-grid .targets {
  display: flex;
  flex-direction: column;
}

#dashboardTargetsList {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
}

.dashboard-overview-card {
  display: flex;
  flex-direction: column;
}

.dashboard-subjects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.dashboard-subjects-header h3 {
  margin: 0;
  color: #000;
  font-weight: bold;
}

.dashboard-overview-toggle {
  display: flex;
  gap: 10px;
}

.dashboard-overview-toggle button {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #1E3A8A;
  color: white;
  font-weight: bold;
}

.dashboard-overview-toggle button.active {
  background: #2563eb;
}

#dashboardOverviewContainer {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
}

/* Optional scrollbar styling */
#dashboardOverviewContainer::-webkit-scrollbar,
#dashboardTargetsList::-webkit-scrollbar {
  width: 8px;
}

#dashboardOverviewContainer::-webkit-scrollbar-thumb,
#dashboardTargetsList::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

#dashboardOverviewContainer::-webkit-scrollbar-track,
#dashboardTargetsList::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

/* Make subject names slightly better inside dashboard */
#dashboardOverviewContainer .overview-subject-name {
  width: 44%;
}

#dashboardOverviewContainer .overview-progress-wrap {
  width: 56%;
}

/* Responsive */
@media (max-width: 1100px) {
  .dashboard-bottom-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-bottom-grid .targets,
  .dashboard-bottom-grid .subjects {
    height: auto;
    max-height: none;
  }

  #dashboardTargetsList,
  #dashboardOverviewContainer {
    overflow-y: visible;
    padding-right: 0;
  }
}

/* ================= RESOURCES PAGE ================= */

.resources-topbar h2 {
  margin: 0;
  font-size: 28px;
  color: #111827;
}

.resources-topbar p {
  margin-top: 6px;
  color: #6b7280;
}

.resources-search-card {
  margin-top: 20px;
  background: white;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resources-search-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 12px 16px;
}

.resources-search-wrap i {
  color: #1e3a8a;
  font-size: 16px;
}

.resources-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
}

.resource-search-status {
  margin-top: 10px;
  font-size: 14px;
  color: #374151;
  font-weight: bold;
}

.resources-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.resource-section-card,
.current-affairs-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.current-affairs-card {
  margin-top: 20px;
}

.resource-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.resource-section-header h3 {
  margin: 0;
  color: #111827;
}

.resource-count {
  background: #e0e7ff;
  color: #1e3a8a;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
}

.resource-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
}

.resource-item-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
}

.resource-item-left {
  display: flex;
  gap: 14px;
  flex: 1;
}

.resource-item-content h4 {
  margin: 0 0 8px 0;
  color: #111827;
  font-size: 17px;
}

.resource-item-content p {
  margin: 0 0 8px 0;
  color: #475569;
  font-size: 14px;
}

.resource-item-content a {
  color: #2563eb;
  font-weight: bold;
  text-decoration: none;
}

.resource-item-content a:hover {
  text-decoration: underline;
}

.resource-badge {
  min-width: 70px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  height: fit-content;
}

.blue-badge {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.gold-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.resource-add-btn {
  border: none;
  background: #1e3a8a;
  color: white;
  padding: 11px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  min-width: 160px;
}

.resource-add-btn:hover {
  background: #2563eb;
}

.resource-not-found {
  text-align: center;
  padding: 20px 12px;
  color: #6b7280;
  font-weight: bold;
}

.current-affair-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}

.current-affair-title {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  color: #111827;
}

.current-affair-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: #475569;
  font-size: 14px;
}

.current-affair-analysis {
  margin-top: 14px;
  padding: 14px;
  background: #eef4ff;
  border-radius: 12px;
  color: #1f2937;
  line-height: 1.6;
}

.hidden {
  display: none !important;
}

.rotate-icon {
  transform: rotate(180deg);
  transition: 0.3s ease;
}

/* RESOURCE MODAL */
.resource-modal-panel {
  width: 100%;
  max-width: 760px;
  background: white;
  border-radius: 24px;
  padding: 30px;
  max-height: 92vh;
  overflow-y: auto;
}

.resource-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.resource-modal-preview {
  background: #f8fafc;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e2e8f0;
}

.resource-modal-preview h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #111827;
}

.resource-modal-preview p {
  margin: 8px 0;
  color: #374151;
}

.resource-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* SCROLLBAR FOR RESOURCES */
.resource-list::-webkit-scrollbar {
  width: 8px;
}

.resource-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.resource-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .resource-item-card {
    flex-direction: column;
  }

  .resource-add-btn {
    width: 100%;
  }

  .resource-modal-body {
    grid-template-columns: 1fr;
  }
}

.current-affair-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.current-affair-heading-text {
  font-weight: 700;
  color: #111827;
  text-align: left;
  flex: 1;
}

.current-affair-date {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
}

.current-affair-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.current-affair-heading-text {
  font-weight: 700;
  color: #111827;
  flex: 1;
  text-align: left;
}

.current-affair-date {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
}

/* NOTES UPLOAD SECTION */
.notes-upload-card {
  margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.notes-upload-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notes-upload-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.uploaded-notes-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.uploaded-note-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
}

.uploaded-note-info h4 {
  margin: 0 0 8px 0;
  color: #111827;
}

.uploaded-note-info p {
  margin: 0;
  color: #475569;
}

.open-note-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .notes-upload-fields {
    grid-template-columns: 1fr;
  }

  .uploaded-note-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .open-note-btn {
    width: 100%;
  }
}

.footer-bar {
  width: 100%;
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  letter-spacing: 0.5px;
}

body {
  padding-bottom: 40px;
}

.footer-bar {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}

.footer-bar:hover {
  opacity: 0.9;
}

.notification-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  z-index: 9999;
  border: 1px solid #e5e5e5;
  animation: slideUp 0.35s ease;
}

.notification-popup-content {
  padding: 20px;
}

.notification-popup-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #222;
}

.notification-popup-content p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.popup-btn {
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.yes-btn {
  background: #1d4ed8;
  color: white;
}

.no-btn {
  background: #e5e7eb;
  color: #222;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.google-calendar-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.planner-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-calendar-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.google-calendar-btn:hover {
  opacity: 0.92;
}

/* SETTINGS MODAL */
.settings-trigger {
  list-style: none;
  cursor: pointer;
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.settings-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
}

.settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.settings-overlay.active {
  display: flex;
}

.settings-modal {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 24px;
  animation: settingsPopup 0.25s ease;
}

@keyframes settingsPopup {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.settings-header h2 {
  margin: 0;
  font-size: 24px;
  color: #222;
}

.settings-close-btn {
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: #444;
  line-height: 1;
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.settings-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.settings-field label {
  font-weight: 600;
  color: #222;
  font-size: 15px;
}

.settings-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7dce3;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  background: #f9fafc;
}

.settings-field select:focus {
  border-color: #2f6fed;
  background: #fff;
}

.settings-actions {
  margin-top: 8px;
}

.save-settings-btn {
  width: 100%;
  border: none;
  background: #2f6fed;
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.save-settings-btn:hover {
  background: #1f57c8;
}

.settings-message {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.settings-message.success {
  color: #118a39;
}

.settings-message.error {
  color: #d93025;
}