@charset "UTF-8";
:root {
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --container-bg: rgba(255, 255, 255, 0.98);
  --container-border: rgba(255, 255, 255, 0.2);
  --text-color: #333;
  --text-secondary: rgba(0, 0, 0, 0.75);
  --heading-gradient: linear-gradient(135deg, #667eea, #764ba2);
  --button-gradient: linear-gradient(135deg, #667eea, #764ba2);
  --button-hover-gradient: linear-gradient(135deg, #5a6fd8, #6a4190);
  --button-shadow: rgba(102, 126, 234, 0.3);
  --button-hover-shadow: rgba(102, 126, 234, 0.4);
  --counter-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --theme-btn-bg: rgba(255, 255, 255, 0.1);
  --theme-btn-hover-bg: rgba(255, 255, 255, 0.2);
  --accent-color: #74b9ff;
  --secondary-color: #a29bfe;
  --input-bg: rgba(0, 0, 0, 0.06);
}

.dark-theme {
  --bg-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  --container-bg: rgba(45, 52, 64, 0.98);
  --container-border: rgba(255, 255, 255, 0.1);
  --text-color: #ecf0f1;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --heading-gradient: linear-gradient(135deg, #74b9ff, #a29bfe);
  --button-gradient: linear-gradient(135deg, #74b9ff, #a29bfe);
  --button-hover-gradient: linear-gradient(135deg, #0984e3, #6c5ce7);
  --button-shadow: rgba(116, 185, 255, 0.3);
  --button-hover-shadow: rgba(116, 185, 255, 0.4);
  --counter-gradient: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
  --theme-btn-bg: rgba(0, 0, 0, 0.2);
  --theme-btn-hover-bg: rgba(0, 0, 0, 0.3);
  --accent-color: #74b9ff;
  --secondary-color: #a29bfe;
  --input-bg: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
}

body {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  background: url("/xp_wallpaper_2.png") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 30px 20px;
  color: #000000;
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(58, 110, 165, 0.2) 0%, rgba(29, 78, 137, 0.2) 25%, rgba(87, 139, 230, 0.15) 50%, rgba(58, 110, 165, 0.2) 75%, rgba(29, 78, 137, 0.2) 100%);
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 80%, rgba(192, 192, 192, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

h1 {
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "MS Sans Serif", sans-serif;
  text-shadow: 1px 1px 0px #ffffff;
  line-height: 1.2;
}

.container {
  background: var(--container-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
  border: 1px solid var(--container-border);
  transition: all 0.3s ease;
  position: relative;
}

.error-messages {
  color: #C00000;
  font-size: 11px;
  margin-top: 2px;
  margin-bottom: 10px;
  font-family: "MS Sans Serif", sans-serif;
}
.error-messages div {
  margin-bottom: 2px;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
}

.theme-btn {
  background: var(--theme-btn-bg) !important;
  border: 1px solid var(--container-border) !important;
  padding: 10px !important;
  margin: 0 !important;
  font-size: 1.5rem !important;
  min-width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}
.theme-btn:hover {
  background: var(--theme-btn-hover-bg) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

p {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 25px 0;
  padding: 20px;
  background: var(--counter-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.dark-theme .theme-btn:hover {
  box-shadow: 0 4px 20px rgba(116, 185, 255, 0.3) !important;
}

.light-theme .theme-btn:hover {
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3) !important;
}

.calendar-app {
  width: 100%;
  max-width: 900px;
  background: #c0c0c0;
  padding: 0;
  border: 2px outset #c0c0c0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  min-height: 400px;
  margin: 0 auto;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.calendar-app:after {
  display: none;
}
.calendar-app .calendar-header {
  background: linear-gradient(135deg, #00007B, #1085D2);
  color: white;
  padding: 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px solid #000080;
  min-height: 18px;
}
.calendar-app .calendar-header .calendar-title {
  margin-left: 4px;
  font-size: 11px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  font-family: "MS Sans Serif", sans-serif;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.calendar-app .calendar-header .calendar-header-controls {
  display: flex;
  gap: 2px;
}
.calendar-app .calendar-header .control-button {
  width: 16px;
  height: 14px;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  color: #000000;
  transition: none;
}
.calendar-app .calendar-header .control-button:hover {
  background: #d4d4d4;
}
.calendar-app .calendar-header .control-button:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.calendar-app .calendar-header .control-button.minimize-btn::before {
  content: "_";
  font-weight: bold;
  margin-top: -2px;
  font-size: 8px;
}
.calendar-app .calendar-header .control-button.maximize-btn::before {
  content: "□";
  font-size: 8px;
  line-height: 1;
}
.calendar-app .calendar-header .control-button.close-btn {
  background: #ff6b6b;
  border: 1px outset #ff6b6b;
}
.calendar-app .calendar-header .control-button.close-btn::before {
  content: "×";
  font-size: 10px;
  font-weight: bold;
}
.calendar-app .calendar-header .control-button.close-btn:hover {
  background: #ff5252;
}
.calendar-app .calendar-header .control-button.close-btn:active {
  border: 1px inset #ff6b6b;
  background: #e53935;
}
.calendar-app .calendar-content {
  display: flex;
  flex-direction: row;
  flex: 1;
  padding: 3px;
  gap: 0;
}
.calendar-app .buttons {
  display: flex;
  column-gap: 1rem;
  margin-left: auto;
}
.calendar-app .task {
  background-color: #333;
}
.calendar-app .navigate-date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  margin-left: 0;
  background: #c0c0c0;
  padding: 4px;
  border: 1px inset #c0c0c0;
}
.calendar-app .navigate-date .month, .calendar-app .navigate-date .year {
  margin: 0;
  font-size: 11px;
  font-weight: bold;
  color: #000000;
  font-family: "MS Sans Serif", sans-serif;
}
.calendar-app .navigate-date .calendar-buttons {
  display: flex;
  gap: 2px;
  font-size: 11px;
  margin-left: auto;
}
.calendar-app .navigate-date .calendar-buttons button {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  padding: 2px 8px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  min-width: 20px;
  height: 20px;
  border-radius: 0;
  color: #000000;
  box-shadow: none;
}
.calendar-app .navigate-date .calendar-buttons button:hover {
  background: #d4d0c8;
  transform: none;
  box-shadow: none;
}
.calendar-app .navigate-date .calendar-buttons button:active {
  border: 1px inset #c0c0c0;
  transform: none;
  box-shadow: none;
}

.calendar-app .calendar {
  flex: 2;
  min-width: 0;
  background: #c0c0c0;
  border: 2px inset #c0c0c0;
  padding: 8px;
}
.calendar-app .calendar .calendar-heading {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: white;
  letter-spacing: 0;
  margin: 0 0 8px 0;
  text-align: left;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  padding: 4px 8px;
  border: 1px outset #c0c0c0;
}

.calendar-app .weekdays {
  width: 100%;
  display: flex;
  margin: 8px 0;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  border: 1px inset #c0c0c0;
}
.calendar-app .weekdays .weekday {
  width: 14.2857142857%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-family: "MS Sans Serif", sans-serif;
  padding: 2px 0;
  border-right: 1px solid #0056A3;
}
.calendar-app .weekdays .weekday:last-child {
  border-right: none;
}

.calendar-app .days {
  display: flex;
  flex-wrap: wrap;
  border: 1px inset #c0c0c0;
  background: #ffffff;
}
.calendar-app .days .unique-day, .calendar-app .days .current-day, .calendar-app .days .empty-day {
  width: 14.2857142857%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: normal;
  color: #000000;
  border: 1px solid #c0c0c0;
  cursor: pointer;
  transition: none;
  font-family: "MS Sans Serif", sans-serif;
  background: #ffffff;
}
.calendar-app .days .unique-day, .calendar-app .days .current-day {
  position: relative;
  flex-direction: column;
}
.calendar-app .days .unique-day:hover, .calendar-app .days .current-day:hover {
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  transform: none;
}
.calendar-app .days .unique-day.selected, .calendar-app .days .selected.current-day {
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  box-shadow: none;
  border: 1px inset #c0c0c0;
}
.calendar-app .days .unique-day.today, .calendar-app .days .today.current-day {
  background: linear-gradient(135deg, #ff6b6b 0%, #d63031 100%);
  color: white;
  border: 2px solid #d63031;
  font-weight: bold;
}
.calendar-app .days .unique-day.selected-day, .calendar-app .days .selected-day.current-day {
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  border: 1px inset #c0c0c0;
  box-shadow: none;
}
.calendar-app .days .unique-day .day-number, .calendar-app .days .current-day .day-number {
  display: block;
  line-height: 1;
}
.calendar-app .days .unique-day .task-count, .calendar-app .days .current-day .task-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  font-size: 7px;
  font-weight: bold;
  line-height: 12px;
  text-align: center;
  border: 1px solid #cc0000;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.calendar-app .days .empty-day {
  cursor: default;
  color: transparent;
  background: #f0f0f0;
}
.calendar-app .days .current-day {
  background: linear-gradient(135deg, #ff6b6b 0%, #d63031 100%);
  color: white;
  border: 2px solid #d63031;
  font-weight: bold;
  box-shadow: none;
}

.calendar-app .sidebar {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #c0c0c0;
  border: 2px inset #c0c0c0;
  padding: 8px;
}
.calendar-app .sidebar .sidebar-header .view-buttons {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
  background: #c0c0c0;
  padding: 2px;
  border: 1px inset #c0c0c0;
}
.calendar-app .sidebar .sidebar-header .view-buttons .view-btn {
  flex: 1;
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  padding: 4px 8px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  color: #000000;
  cursor: pointer;
  transition: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  min-width: auto;
  height: auto;
}
.calendar-app .sidebar .sidebar-header .view-buttons .view-btn:hover {
  background: #d4d0c8;
  transform: none;
  box-shadow: none;
}
.calendar-app .sidebar .sidebar-header .view-buttons .view-btn:active {
  border: 1px inset #c0c0c0;
  transform: none;
  box-shadow: none;
}
.calendar-app .sidebar .sidebar-header .view-buttons .view-btn.active {
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  border: 1px inset #c0c0c0;
  font-weight: bold;
}
.calendar-app .sidebar .sidebar-header .header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}
.calendar-app .sidebar .sidebar-header .header-row h3 {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: white;
  margin: 0;
  padding: 4px 8px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  border: 1px outset #c0c0c0;
  flex: 1;
  text-align: left;
}
.calendar-app .sidebar .sidebar-header .header-row .action-buttons .add-btn {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  padding: 4px 8px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  color: #000000;
  cursor: pointer;
  transition: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  min-width: auto;
  height: auto;
  white-space: nowrap;
}
.calendar-app .sidebar .sidebar-header .header-row .action-buttons .add-btn:hover {
  background: #d4d0c8;
  transform: none;
  box-shadow: none;
}
.calendar-app .sidebar .sidebar-header .header-row .action-buttons .add-btn:active {
  border: 1px inset #c0c0c0;
  transform: none;
  box-shadow: none;
}
.calendar-app .sidebar .sidebar-header h3:not(.header-row h3) {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: white;
  margin: 0;
  text-align: center;
  padding: 4px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  border: 1px outset #c0c0c0;
}
.calendar-app .sidebar .content-list, .calendar-app .sidebar .task-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #ffffff;
  border: 1px inset #c0c0c0;
  padding: 4px;
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  scrollbar-width: 16px;
  scrollbar-color: #c0c0c0 #dfdfdf;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
  text-rendering: auto !important;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar, .calendar-app .sidebar .task-list::-webkit-scrollbar {
  width: 16px;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-track, .calendar-app .sidebar .task-list::-webkit-scrollbar-track {
  background: #dfdfdf;
  border: 1px inset #c0c0c0;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-thumb, .calendar-app .sidebar .task-list::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  border-radius: 0;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-thumb:hover, .calendar-app .sidebar .task-list::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-thumb:active, .calendar-app .sidebar .task-list::-webkit-scrollbar-thumb:active {
  background: #808080;
  border: 1px inset #c0c0c0;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-button, .calendar-app .sidebar .task-list::-webkit-scrollbar-button {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  width: 16px;
  height: 16px;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-button:hover, .calendar-app .sidebar .task-list::-webkit-scrollbar-button:hover {
  background: #e0e0e0;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-button:active, .calendar-app .sidebar .task-list::-webkit-scrollbar-button:active {
  border: 1px inset #c0c0c0;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-button:vertical:start:decrement, .calendar-app .sidebar .task-list::-webkit-scrollbar-button:vertical:start:decrement {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M8 4l-4 4h8z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.calendar-app .sidebar .content-list::-webkit-scrollbar-button:vertical:end:increment, .calendar-app .sidebar .task-list::-webkit-scrollbar-button:vertical:end:increment {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M8 12l-4-4h8z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.calendar-app .sidebar .content-list *, .calendar-app .sidebar .task-list * {
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
  text-rendering: auto !important;
}
@media (max-width: 1024px) {
  .calendar-app {
    flex-direction: column;
    width: 90%;
    max-width: 90vw;
    padding: 1.2rem;
  }
  .calendar-app .calendar {
    flex: none;
  }
  .calendar-app .calendar .calendar-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
  }
  .calendar-app .sidebar {
    flex: none;
    min-width: auto;
    max-width: none;
  }
  .calendar-app .sidebar .task-list {
    max-height: 40vh;
  }
}
@media (max-width: 768px) {
  .calendar-app {
    width: 90%;
    max-width: 90vw;
    padding: 1rem;
    border-radius: 1.5rem;
  }
  .calendar-app .sidebar .sidebar-header h3 {
    font-size: 1.3rem;
  }
  .calendar-app .calendar .calendar-heading {
    font-size: 1.8rem;
  }
}
.task-card {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  border-radius: 0;
  padding: 8px;
  margin: 4px 0;
  box-shadow: none;
  transition: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}
.task-card:hover {
  background: #d4d0c8;
  transform: none;
  box-shadow: none;
  border: 1px outset #d4d0c8;
}
.task-card:active {
  border: 1px inset #c0c0c0;
  background: #b8b8b8;
  transform: none;
  transition: none;
}
.task-card::before {
  display: none;
}
.task-card:hover::before {
  display: none;
}

.task-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  gap: 8px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  padding: 2px 4px;
  border: 1px outset #c0c0c0;
  margin: -8px -8px 4px -8px;
}

.task-title {
  font-size: 11px;
  font-weight: bold;
  color: white;
  margin: 0;
  line-height: 1.2;
  flex: 1;
  word-break: break-word;
  font-family: "MS Sans Serif", sans-serif;
}

.task-actions {
  display: flex;
  gap: 2px;
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes slideInFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.edit-button,
.delete-button {
  padding: 1px 4px;
  font-size: 9px;
  font-weight: normal;
  border-radius: 0;
  border: 1px outset #c0c0c0;
  cursor: pointer;
  transition: none;
  min-width: auto;
  margin: 0;
  background: #c0c0c0;
  color: #000000;
  font-family: "MS Sans Serif", sans-serif;
}
.edit-button:hover,
.delete-button:hover {
  background: #d4d0c8;
  transform: none;
}
.edit-button:active,
.delete-button:active {
  border: 1px inset #c0c0c0;
  background: #b8b8b8;
  transform: none;
}

.edit-button {
  background: #c0c0c0;
  color: #000000;
  box-shadow: none;
}
.edit-button:hover {
  background: #d4d0c8;
  box-shadow: none;
}

.delete-button {
  background: #c0c0c0;
  color: #000000;
  box-shadow: none;
}
.delete-button:hover {
  background: #d4d0c8;
  box-shadow: none;
}

.task-body {
  margin-top: 4px;
}

.task-description {
  font-size: 11px;
  color: #000000 !important;
  line-height: 1.2;
  margin: 0 0 4px 0;
  padding: 4px;
  background: #ffffff !important;
  border-radius: 0;
  border: 1px inset #c0c0c0;
  font-family: "MS Sans Serif", sans-serif !important;
  font-weight: normal !important;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: visible;
  backdrop-filter: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  will-change: auto !important;
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
  text-rendering: auto !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  text-shadow: none !important;
  background-image: none !important;
  background-attachment: initial !important;
  background-origin: initial !important;
  background-repeat: initial !important;
  background-position: initial !important;
  background-size: initial !important;
}

.task-status {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 4px 0;
  padding: 2px 4px;
  background: #c0c0c0;
  border: 1px inset #c0c0c0;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
}

.status-label {
  font-weight: bold;
  color: #000000;
}

.status-value {
  color: #000080;
  font-weight: normal;
}

.task-datetime {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.task-date {
  font-size: 11px;
  font-weight: normal;
  color: #000000;
  padding: 2px 4px;
  background: #c0c0c0;
  border-radius: 0;
  border: 1px inset #c0c0c0;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  font-family: "MS Sans Serif", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.task-time {
  font-size: 11px;
  color: #000000;
  padding: 2px 4px;
  background: #c0c0c0;
  border-radius: 0;
  border: 1px inset #c0c0c0;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  font-weight: normal;
  font-family: "MS Sans Serif", sans-serif;
  transform: none;
  transition: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.task-status-actions {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.complete-button,
.incomplete-button {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  padding: 4px 12px;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
  color: #000000;
  cursor: pointer;
}
.complete-button:hover,
.incomplete-button:hover {
  background: #d4d0c8;
  border: 1px outset #d4d0c8;
}
.complete-button:active,
.incomplete-button:active {
  border: 1px inset #c0c0c0;
  background: #b8b8b8;
}

.complete-button:hover {
  background: #90EE90;
  border: 1px outset #90EE90;
}

.incomplete-button:hover {
  background: #FFB347;
  border: 1px outset #FFB347;
}

.dark-theme .task-card,
.light-theme .task-card {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
}
.dark-theme .task-card:hover,
.light-theme .task-card:hover {
  background: #d4d0c8;
  border: 1px outset #d4d0c8;
}

.dark-theme .task-description,
.light-theme .task-description {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px inset #c0c0c0;
  font-family: "MS Sans Serif", sans-serif !important;
  backdrop-filter: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  text-shadow: none !important;
  background-image: none !important;
}

.dark-theme .task-date,
.light-theme .task-date {
  background: #c0c0c0;
  border: 1px inset #c0c0c0;
  color: #000000;
}

@media (max-width: 768px) {
  .task-card {
    padding: 6px;
    margin: 2px 0;
  }
  .task-title {
    font-size: 11px;
  }
  .task-header {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  .task-actions {
    align-self: center;
  }
  .edit-button,
  .delete-button {
    padding: 1px 3px;
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .task-card,
  .task-actions,
  .task-description,
  .task-time {
    transition: none;
  }
}
.task-card:focus-visible {
  outline: 1px dotted #000000;
  outline-offset: 1px;
}

.edit-button:focus-visible,
.delete-button:focus-visible {
  outline: 1px dotted #000000;
  outline-offset: 1px;
}

.task-title-input {
  font-size: 11px;
  font-weight: bold;
  color: #000000;
  margin: 0;
  padding: 2px 4px;
  background: #ffffff;
  border: 1px inset #c0c0c0;
  border-radius: 0;
  font-family: "MS Sans Serif", sans-serif;
  width: 100%;
  box-sizing: border-box;
}
.task-title-input:focus {
  outline: 1px dotted #000000;
  outline-offset: 1px;
}

.task-description-input {
  font-size: 11px;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 4px 0;
  padding: 4px;
  background: #ffffff;
  border: 1px inset #c0c0c0;
  border-radius: 0;
  font-family: "MS Sans Serif", sans-serif;
  width: 100%;
  box-sizing: border-box;
  min-height: 60px;
  resize: vertical;
  word-wrap: break-word;
}
.task-description-input:focus {
  outline: 1px dotted #000000;
  outline-offset: 1px;
}

.save-button,
.cancel-button {
  padding: 1px 4px;
  font-size: 9px;
  font-weight: normal;
  border-radius: 0;
  cursor: pointer;
  transition: none;
  min-width: auto;
  margin: 0;
  font-family: "MS Sans Serif", sans-serif;
}
.save-button:hover,
.cancel-button:hover {
  transform: none;
}
.save-button:active,
.cancel-button:active {
  transform: none;
}

.save-button {
  background: #90ee90;
  border: 1px outset #90ee90;
  color: #000000;
}
.save-button:hover {
  background: #98fb98;
}
.save-button:active {
  border: 1px inset #90ee90;
  background: #7ccd7c;
}

.cancel-button {
  background: #ffb6c1;
  border: 1px outset #ffb6c1;
  color: #000000;
}
.cancel-button:hover {
  background: #ffc0cb;
}
.cancel-button:active {
  border: 1px inset #ffb6c1;
  background: #f08080;
}

.reminder-card {
  background: #c0c0c0 !important;
  border: 1px outset #c0c0c0;
  border-radius: 0;
  padding: 8px;
  margin: 4px 0;
  box-shadow: none;
  transition: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}
.reminder-card:hover {
  background: #d4d0c8 !important;
  transform: none;
  box-shadow: none;
  border: 1px outset #d4d0c8;
}
.reminder-card:active {
  border: 1px inset #c0c0c0;
  background: #b8b8b8 !important;
  transform: none;
  transition: none;
}
.reminder-card::before {
  display: none;
}
.reminder-card:hover::before {
  display: none;
}

.reminder-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  gap: 8px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  padding: 2px 4px;
  border: 1px outset #c0c0c0;
  margin: -8px -8px 4px -8px;
  margin-top: -8px !important;
}

.reminder-title {
  font-size: 11px;
  font-weight: bold;
  color: white;
  margin: 0;
  line-height: 1.2;
  flex: 1;
  word-break: break-word;
  font-family: "MS Sans Serif", sans-serif;
}

.reminder-actions {
  display: flex;
  gap: 2px;
  opacity: 1;
  transform: none;
  animation: none;
}

.reminder-card .edit-button,
.reminder-card .delete-button {
  padding: 1px 4px;
  font-size: 9px;
  font-weight: normal;
  border-radius: 0;
  border: 1px outset #c0c0c0;
  cursor: pointer;
  transition: none;
  min-width: auto;
  margin: 0;
  background: #c0c0c0;
  color: #000000;
  font-family: "MS Sans Serif", sans-serif;
}
.reminder-card .edit-button:hover,
.reminder-card .delete-button:hover {
  background: #d4d0c8;
  transform: none;
}
.reminder-card .edit-button:active,
.reminder-card .delete-button:active {
  border: 1px inset #c0c0c0;
  background: #b8b8b8;
  transform: none;
}

.reminder-card .edit-button {
  background: #c0c0c0;
  color: #000000;
  box-shadow: none;
}
.reminder-card .edit-button:hover {
  background: #d4d0c8;
  box-shadow: none;
}

.reminder-card .delete-button {
  background: #c0c0c0;
  color: #000000;
  box-shadow: none;
}
.reminder-card .delete-button:hover {
  background: #d4d0c8;
  box-shadow: none;
}

.reminder-body {
  margin-top: 4px;
  background: transparent;
}

.reminder-category {
  font-size: 11px;
  color: #000000 !important;
  line-height: 1.2;
  margin: 0 0 4px 0;
  padding: 4px;
  background: #ffffff !important;
  border-radius: 0;
  border: 1px inset #c0c0c0;
  font-family: "MS Sans Serif", sans-serif !important;
  font-weight: normal !important;
  backdrop-filter: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  will-change: auto !important;
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
  text-rendering: auto !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  text-shadow: none !important;
  background-image: none !important;
  background-attachment: initial !important;
  background-origin: initial !important;
  background-repeat: initial !important;
  background-position: initial !important;
  background-size: initial !important;
}

.reminder-datetime {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.reminder-date {
  font-size: 11px;
  font-weight: normal;
  color: #000000;
  padding: 2px 4px;
  background: #c0c0c0;
  border-radius: 0;
  border: 1px inset #c0c0c0;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  font-family: "MS Sans Serif", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.reminder-time {
  font-size: 11px;
  color: #000000;
  padding: 2px 4px;
  background: #c0c0c0;
  border-radius: 0;
  border: 1px inset #c0c0c0;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  font-weight: normal;
  font-family: "MS Sans Serif", sans-serif;
  transform: none;
  transition: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dark-theme .reminder-card,
.light-theme .reminder-card {
  background: #c0c0c0 !important;
  border: 1px outset #c0c0c0;
}
.dark-theme .reminder-card:hover,
.light-theme .reminder-card:hover {
  background: #d4d0c8 !important;
  border: 1px outset #d4d0c8;
}

.dark-theme .reminder-category,
.light-theme .reminder-category {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px inset #c0c0c0;
  font-family: "MS Sans Serif", sans-serif !important;
  backdrop-filter: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  text-shadow: none !important;
  background-image: none !important;
}

.dark-theme .reminder-date,
.light-theme .reminder-date {
  background: #c0c0c0;
  border: 1px inset #c0c0c0;
  color: #000000;
}

.dark-theme .reminder-time,
.light-theme .reminder-time {
  background: #c0c0c0;
  border: 1px inset #c0c0c0;
  color: #000000;
}

@media (max-width: 768px) {
  .reminder-card {
    padding: 6px;
    margin: 2px 0;
  }
  .reminder-title {
    font-size: 11px;
  }
  .reminder-header {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  .reminder-actions {
    align-self: center;
  }
  .reminder-card .edit-button,
  .reminder-card .delete-button {
    padding: 1px 3px;
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reminder-card,
  .reminder-actions,
  .reminder-category,
  .reminder-time {
    transition: none;
  }
}
.reminder-card:focus-visible {
  outline: 1px dotted #000000;
  outline-offset: 1px;
}

.reminder-card .edit-button:focus-visible,
.reminder-card .delete-button:focus-visible {
  outline: 1px dotted #000000;
  outline-offset: 1px;
}

.reminder-form {
  display: flex;
  flex-direction: column;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  margin: 20px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  overflow: hidden;
  position: relative;
  font-family: "MS Sans Serif", sans-serif;
}
.reminder-form .reminder-form-header {
  background: linear-gradient(135deg, #00007B, #1085D2);
  color: white;
  padding: 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px solid #000080;
  min-height: 18px;
}
.reminder-form .reminder-form-header .title-text {
  margin-left: 4px;
  font-family: "MS Sans Serif", sans-serif;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.reminder-form .reminder-form-header .window-controls {
  display: flex;
  gap: 2px;
}
.reminder-form .reminder-form-header .window-controls .control-button {
  width: 16px;
  height: 14px;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  color: #000000;
}
.reminder-form .reminder-form-header .window-controls .control-button:hover {
  background: #d4d4d4;
}
.reminder-form .reminder-form-header .window-controls .control-button:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.reminder-form .reminder-form-header .window-controls .control-button.minimize::before {
  content: "_";
  font-weight: bold;
  margin-top: -2px;
  font-size: 8px;
}
.reminder-form .reminder-form-header .window-controls .control-button.maximize::before {
  content: "□";
  font-size: 8px;
  line-height: 1;
}
.reminder-form .reminder-form-header .window-controls .control-button.close {
  background: #ff6b6b;
  border: 1px outset #ff6b6b;
}
.reminder-form .reminder-form-header .window-controls .control-button.close::before {
  content: "×";
  font-size: 10px;
  font-weight: bold;
}
.reminder-form .reminder-form-header .window-controls .control-button.close:hover {
  background: #ff5252;
}
.reminder-form .reminder-form-header .window-controls .control-button.close:active {
  border: 1px inset #ff6b6b;
  background: #e53935;
}
.reminder-form .reminder-form-content {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}
.reminder-form .reminder-form-content .full-width {
  grid-column: 1/-1;
}
.reminder-form.success .reminder-form-content {
  border: 2px inset #008000;
  background: #c0c0c0;
}
.reminder-form.error .reminder-form-content {
  border: 2px inset #ff0000;
  background: #c0c0c0;
}
.reminder-form .status-message {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  font-weight: normal;
  font-size: 11px;
  z-index: 10;
  min-width: 120px;
  text-align: center;
  font-family: "MS Sans Serif", sans-serif;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
}
.reminder-form .status-message.success {
  background: #008000;
  color: white;
  border: 1px outset #008000;
}
.reminder-form .status-message.error {
  background: #ff0000;
  color: white;
  border: 1px outset #ff0000;
}
.reminder-form label {
  margin-bottom: 4px;
  font-weight: normal;
  color: #000000;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  background: linear-gradient(135deg, #00007B, #1085D2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.reminder-form input[type=text], .reminder-form input[type=date] {
  padding: 4px 6px;
  border: 2px inset #c0c0c0;
  margin-bottom: 5px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  background: white;
  color: #000000;
  width: 100%;
  box-sizing: border-box;
}
.reminder-form input[type=text]:focus, .reminder-form input[type=date]:focus {
  outline: 1px dotted #000000;
  border: 2px inset #c0c0c0;
  background: white;
}
.reminder-form input[type=text]::placeholder, .reminder-form input[type=date]::placeholder {
  color: #808080;
  font-style: normal;
  opacity: 1;
}
.reminder-form .button-container {
  grid-column: 1/-1;
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.reminder-form button[type=submit], .reminder-form button[type=button] {
  flex: 1;
  padding: 8px 20px;
  margin: 0;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  border-radius: 0;
  color: #000000;
  font-size: 11px;
  font-weight: normal;
  font-family: "MS Sans Serif", sans-serif;
  cursor: pointer;
  box-sizing: border-box;
}
.reminder-form button[type=submit]:hover:not(:disabled), .reminder-form button[type=button]:hover:not(:disabled) {
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
}
.reminder-form button[type=submit]:active:not(:disabled), .reminder-form button[type=button]:active:not(:disabled) {
  border: 2px inset #c0c0c0;
  background: #c0c0c0;
}
.reminder-form button[type=submit]:disabled, .reminder-form button[type=button]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #c0c0c0;
  border: 2px outset #808080;
  color: #808080;
}

.reminder-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.reminder-popup .reminder-form {
  margin: 0;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .reminder-form {
    margin: 10px;
    max-width: calc(100vw - 20px);
  }
  .reminder-form .reminder-form-content {
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .reminder-popup {
    padding: 10px;
  }
  .reminder-popup .reminder-form {
    margin: 0;
    max-width: calc(100vw - 20px);
  }
}
@media (max-width: 480px) {
  .reminder-form .reminder-form-content {
    padding: 10px;
    gap: 8px;
    grid-template-columns: 1fr;
  }
  .reminder-form input {
    padding: 3px 4px;
    font-size: 11px;
  }
  .reminder-form .button-container {
    flex-direction: column;
    gap: 5px;
  }
  .reminder-form button[type=submit], .reminder-form button[type=button] {
    padding: 4px 8px;
    font-size: 11px;
  }
  .reminder-popup {
    padding: 15px;
  }
}
.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
  border-top: 1px solid #a0a0a0;
  display: flex;
  align-items: center;
  padding: 0 5px 0 0;
  font-family: "Tahoma", sans-serif;
  z-index: 1000;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
}
.taskbar .start-button {
  background-image: url("/xp_button_one.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 95px;
  height: 100%;
  border: none;
  cursor: pointer;
  background-color: transparent;
  background-size: contain;
}
.taskbar .start-button:hover {
  filter: brightness(1.1);
}
.taskbar .start-button:active {
  filter: brightness(0.9);
}
.taskbar .taskbar-divider {
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 5px;
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1);
}
.taskbar .quick-launch {
  display: flex;
  align-items: center;
}
.taskbar .taskbar-main {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.taskbar .taskbar-app-button {
  background: linear-gradient(to bottom, #3c7fb1 0%, #2989d8 50%, #207cca 51%, #1e5799 100%);
  border: 1px outset #2989d8;
  color: white;
  font-family: "Tahoma", sans-serif;
  font-size: 11px;
  font-weight: normal;
  cursor: pointer;
  margin-right: 2px;
  padding: 2px 6px;
  height: 22px;
  min-width: 120px;
  max-width: 160px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 0;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.taskbar .taskbar-app-button:hover {
  background: linear-gradient(to bottom, #4c8fc1 0%, #3999e8 50%, #309cda 51%, #2e67a9 100%);
}
.taskbar .taskbar-app-button:active {
  border: 1px inset #2989d8;
  background: linear-gradient(to bottom, #1e5799 0%, #207cca 50%, #2989d8 51%, #3c7fb1 100%);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.taskbar .taskbar-app-button.active {
  border: 1px inset #2989d8;
  background: linear-gradient(to bottom, #1e5799 0%, #207cca 50%, #2989d8 51%, #3c7fb1 100%);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.taskbar .taskbar-app-button .app-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.taskbar .taskbar-app-button .app-icon.calendar-icon {
  background-image: url("/win98_date_time_icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.taskbar .taskbar-app-button .app-icon.report-icon {
  background-image: url("/report-icon.png");
  background-size: 16px 16px; /* Tamanho fixo para evitar distorções */
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: crisp-edges; /* Melhora a renderização de pixels */
}
.taskbar .taskbar-app-button .app-name {
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.taskbar .system-tray {
  background: linear-gradient(to top, #1e5799, #2989d8);
  border: 1px solid #1c5a98;
  padding: 2px 8px;
  margin-right: -5px;
  display: flex;
  align-items: center;
}
.taskbar .system-tray .time {
  color: white;
  font-size: 12px;
}
.taskbar .tray-icon.network-icon {
  background-image: url("/ethernet_win_95_icon.png");
}
.taskbar .tray-icon.sound-icon {
  background-image: url("/win98_sound_icon.png");
}
.taskbar .tray-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.taskbar .tray-icon:hover {
  filter: brightness(1.2);
}
.taskbar .tray-icon:active {
  filter: brightness(0.8);
}

.app-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 30px);
  max-width: 100vw;
  max-height: calc(100vh - 30px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.task-form {
  display: flex;
  flex-direction: column;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  margin: 20px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  overflow: hidden;
  position: relative;
  font-family: "MS Sans Serif", sans-serif;
}
.task-form .task-form-header {
  background: linear-gradient(135deg, #00007B, #1085D2);
  color: white;
  padding: 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px solid #000080;
  min-height: 18px;
}
.task-form .task-form-header .title-text {
  margin-left: 4px;
  font-family: "MS Sans Serif", sans-serif;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.task-form .task-form-header .window-controls {
  display: flex;
  gap: 2px;
}
.task-form .task-form-header .window-controls .control-button {
  width: 16px;
  height: 14px;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  color: #000000;
}
.task-form .task-form-header .window-controls .control-button:hover {
  background: #d4d4d4;
}
.task-form .task-form-header .window-controls .control-button:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.task-form .task-form-header .window-controls .control-button.minimize::before {
  content: "_";
  font-weight: bold;
  margin-top: -2px;
  font-size: 8px;
}
.task-form .task-form-header .window-controls .control-button.maximize::before {
  content: "□";
  font-size: 8px;
  line-height: 1;
}
.task-form .task-form-header .window-controls .control-button.close {
  background: #ff6b6b;
  border: 1px outset #ff6b6b;
}
.task-form .task-form-header .window-controls .control-button.close::before {
  content: "×";
  font-size: 10px;
  font-weight: bold;
}
.task-form .task-form-header .window-controls .control-button.close:hover {
  background: #ff5252;
}
.task-form .task-form-header .window-controls .control-button.close:active {
  border: 1px inset #ff6b6b;
  background: #e53935;
}
.task-form .task-form-content {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}
.task-form .task-form-content .full-width {
  grid-column: 1/-1;
}
.task-form.success .task-form-content {
  border: 2px inset #008000;
  background: #c0c0c0;
}
.task-form.error .task-form-content {
  border: 2px inset #ff0000;
  background: #c0c0c0;
}
.task-form .status-message {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  font-weight: normal;
  font-size: 11px;
  z-index: 10;
  min-width: 120px;
  text-align: center;
  font-family: "MS Sans Serif", sans-serif;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
}
.task-form .status-message.success {
  background: #008000;
  color: white;
  border: 1px outset #008000;
}
.task-form .status-message.error {
  background: #ff0000;
  color: white;
  border: 1px outset #ff0000;
}
.task-form label {
  margin-bottom: 4px;
  font-weight: normal;
  color: #000000;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  background: linear-gradient(135deg, #00007B, #1085D2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: none;
  letter-spacing: normal;
  display: block;
}
.task-form input, .task-form textarea {
  padding: 4px 6px;
  border: 2px inset #c0c0c0;
  margin-bottom: 5px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  background: white;
  color: #000000;
  box-shadow: none;
  width: 100%;
  box-sizing: border-box;
}
.task-form input:focus, .task-form textarea:focus {
  outline: 1px dotted #000000;
  border: 2px inset #c0c0c0;
  background: white;
}
.task-form input::placeholder, .task-form textarea::placeholder {
  color: #808080;
  font-style: normal;
  opacity: 1;
}
.task-form textarea {
  resize: vertical;
  min-height: 60px;
  line-height: 1.2;
  font-family: "MS Sans Serif", sans-serif;
  grid-column: 1/-1;
}
.task-form .task-form-modal .task-form-content .win98-select,
.task-form .task-form-content select.win98-select,
.task-form div.task-form-content select.win98-select,
.task-form select.win98-select {
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -ms-appearance: none !important;
  background: white !important;
  background-color: white !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><polygon points='0,0 12,0 6,8' fill='%23000000'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 6px) center !important;
  background-size: 8px 6px !important;
  border: 2px inset #c0c0c0 !important;
  border-radius: 0 !important;
  padding: 4px 20px 4px 6px !important;
  font-size: 11px !important;
  font-family: "MS Sans Serif", sans-serif !important;
  color: #000000 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 5px !important;
  box-shadow: none !important;
  text-shadow: none !important;
  outline: none !important;
  border-top: 2px inset #c0c0c0 !important;
  border-right: 2px inset #c0c0c0 !important;
  border-bottom: 2px inset #c0c0c0 !important;
  border-left: 2px inset #c0c0c0 !important;
  border-style: inset !important;
  border-width: 2px !important;
  border-color: #c0c0c0 !important;
}
.task-form .task-form-modal .task-form-content .win98-select:focus,
.task-form .task-form-content select.win98-select:focus,
.task-form div.task-form-content select.win98-select:focus,
.task-form select.win98-select:focus {
  outline: 1px dotted #000000 !important;
  border: 2px inset #c0c0c0 !important;
  background-color: white !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><polygon points='0,0 12,0 6,8' fill='%23000000'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 6px) center !important;
  background-size: 8px 6px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.task-form .task-form-modal .task-form-content .win98-select:hover,
.task-form .task-form-content select.win98-select:hover,
.task-form div.task-form-content select.win98-select:hover,
.task-form select.win98-select:hover {
  border: 2px inset #c0c0c0 !important;
  background-color: white !important;
  border-radius: 0 !important;
}
.task-form .task-form-modal .task-form-content .win98-select:active,
.task-form .task-form-content select.win98-select:active,
.task-form div.task-form-content select.win98-select:active,
.task-form select.win98-select:active {
  border: 2px inset #c0c0c0 !important;
  background-color: white !important;
  border-radius: 0 !important;
}
.task-form .win98-option {
  background: white !important;
  color: #000000 !important;
  font-family: "MS Sans Serif", sans-serif !important;
  font-size: 11px !important;
  padding: 2px 4px !important;
}
.task-form .win98-option:checked, .task-form .win98-option:hover {
  background: #0078d4 !important;
  color: white !important;
}
.task-form .time-input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
}
.task-form .time-input .event-popup-time {
  display: flex;
  align-items: center;
  gap: 4px;
}
.task-form .time-input .event-popup-time .hour-input, .task-form .time-input .event-popup-time .minute-input {
  width: 40px;
  height: 24px;
  padding: 2px 4px;
  border: 2px inset #c0c0c0;
  text-align: center;
  font-size: 11px;
  font-weight: normal;
  background: white;
  color: #000000;
  box-sizing: border-box;
  margin-bottom: 0;
  font-family: "MS Sans Serif", sans-serif;
}
.task-form .time-input .event-popup-time .hour-input:focus, .task-form .time-input .event-popup-time .minute-input:focus {
  outline: 1px dotted #000000;
  border: 2px inset #c0c0c0;
}
.task-form .time-input .event-popup-time .hour-input::placeholder, .task-form .time-input .event-popup-time .minute-input::placeholder {
  color: #808080;
  font-size: 11px;
  opacity: 1;
}
.task-form .time-input .event-popup-time .hour-input::-webkit-outer-spin-button, .task-form .time-input .event-popup-time .hour-input::-webkit-inner-spin-button, .task-form .time-input .event-popup-time .minute-input::-webkit-outer-spin-button, .task-form .time-input .event-popup-time .minute-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.task-form .time-input .event-popup-time .hour-input[type=number], .task-form .time-input .event-popup-time .minute-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.task-form .button-container {
  grid-column: 1/-1;
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.task-form button[type=submit] {
  flex: 1;
  padding: 8px 20px;
  margin: 0;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  border-radius: 0;
  color: #000000;
  font-size: 11px;
  font-weight: normal;
  font-family: "MS Sans Serif", sans-serif;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  letter-spacing: normal;
  min-height: 23px;
}
.task-form button[type=submit]:hover:not(:disabled) {
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
}
.task-form button[type=submit]:active:not(:disabled) {
  border: 2px inset #c0c0c0;
  background: #c0c0c0;
}
.task-form button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #c0c0c0;
  border: 2px outset #808080;
  color: #808080;
}
.task-form button[type=button] {
  flex: 1;
  padding: 8px 20px;
  margin: 0;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  border-radius: 0;
  color: #000000;
  font-size: 11px;
  font-weight: normal;
  font-family: "MS Sans Serif", sans-serif;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  letter-spacing: normal;
  min-height: 23px;
}
.task-form button[type=button]:hover:not(:disabled) {
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
}
.task-form button[type=button]:active:not(:disabled) {
  border: 2px inset #c0c0c0;
  background: #c0c0c0;
}
.task-form button[type=button]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #c0c0c0;
  border: 2px outset #808080;
  color: #808080;
}

.task-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.task-popup .task-form {
  margin: 0;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .task-form {
    margin: 10px;
    max-width: calc(100vw - 20px);
  }
  .task-form .task-form-content {
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .task-popup {
    padding: 10px;
  }
  .task-popup .task-form {
    margin: 0;
    max-width: calc(100vw - 20px);
  }
}
@media (max-width: 480px) {
  .task-form .task-form-content {
    padding: 10px;
    gap: 8px;
    grid-template-columns: 1fr;
  }
  .task-form input, .task-form textarea {
    padding: 3px 4px;
    font-size: 11px;
  }
  .task-form button[type=submit], .task-form button[type=button] {
    padding: 4px 8px;
    font-size: 11px;
  }
  .task-form .button-container {
    flex-direction: column;
    gap: 5px;
  }
  .task-popup {
    padding: 15px;
  }
}
@keyframes win98Flash {
  0%, 100% {
    background: #c0c0c0;
  }
  50% {
    background: #ffffff;
  }
}
.win98-select-container {
  position: relative;
  width: 100%;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
}

.win98-select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
  border: 2px outset #c0c0c0;
  background: white;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 5px;
}
.win98-select-button:active {
  border: 2px inset #c0c0c0;
}

.win98-select-text {
  color: #000000;
  flex: 1;
  text-align: left;
}

.win98-select-arrow {
  color: #000000;
  font-size: 8px;
  margin-left: 8px;
}

.win98-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px outset #c0c0c0;
  border-top: 1px solid #808080;
  z-index: 1000;
  max-height: 150px;
  overflow-y: auto;
}

.win98-select-option {
  padding: 4px 6px;
  cursor: pointer;
  color: #000000;
  background: white;
}
.win98-select-option:hover {
  background: #0000ff;
  color: white;
}
.win98-select-option.selected {
  background: #0000ff;
  color: white;
}

.report-app {
  width: 900px;
  background: #c0c0c0;
  padding: 0;
  border: 2px outset #c0c0c0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.report-app .report-header {
  background: linear-gradient(135deg, #00007B, #1085D2);
  color: white;
  padding: 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px solid #000080;
  min-height: 18px;
}
.report-app .report-header .report-title {
  margin-left: 4px;
  font-size: 11px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  font-family: "MS Sans Serif", sans-serif;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.report-app .report-header-controls {
  display: flex;
  gap: 2px;
}
.report-app .report-header-controls .control-button {
  width: 16px;
  height: 14px;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: bold;
  color: #000000;
  transition: none;
  margin-left: 2px;
}
.report-app .report-header-controls .control-button:hover {
  background: #d4d4d4;
}
.report-app .report-header-controls .control-button:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.report-app .report-header-controls .control-button.minimize-btn::before {
  content: "_";
  font-weight: bold;
  margin-top: -2px;
  font-size: 8px;
}
.report-app .report-header-controls .control-button.maximize-btn::before {
  content: "□";
  font-size: 8px;
  line-height: 1;
}
.report-app .report-header-controls .control-button.close-btn {
  background: #ff6b6b;
  border: 1px outset #ff6b6b;
}
.report-app .report-header-controls .control-button.close-btn::before {
  content: "×";
  font-size: 10px;
  font-weight: bold;
  display: block;
  text-align: center;
  line-height: 14px;
}
.report-app .report-header-controls .control-button.close-btn:hover {
  background: #ff5252;
}
.report-app .report-header-controls .control-button.close-btn:active {
  border: 1px inset #ff6b6b;
  background: #e53935;
}
.report-app .report-content {
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  height: 615px;
}
.report-app .report-content .report-sidebar {
  width: 220px;
  background: #ffffff;
  border: 1px inset #c0c0c0;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.report-app .report-content .report-sidebar h3 {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: white;
  margin: 0 0 4px 0;
  padding: 4px 8px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  border: 1px outset #c0c0c0;
  text-align: left;
}
.report-app .report-content .report-sidebar .report-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.report-app .report-content .report-sidebar .report-menu li {
  margin: 0;
  padding: 0;
}
.report-app .report-content .report-sidebar .report-menu li .menu-item {
  width: 100%;
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  padding: 4px 8px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  color: #000000;
  cursor: pointer;
  transition: none;
  border-radius: 0;
  text-align: left;
}
.report-app .report-content .report-sidebar .report-menu li .menu-item:hover {
  background: #d4d0c8;
}
.report-app .report-content .report-sidebar .report-menu li .menu-item:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.report-app .report-content .report-sidebar .report-menu li .menu-item.active {
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  border: 1px inset #00007B;
}
.report-app .report-content .report-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-app .report-content .report-main .report-view {
  flex: 1;
  background: #ffffff;
  border: 1px inset #c0c0c0;
  padding: 8px;
  overflow-y: auto;
  scrollbar-width: 16px;
  scrollbar-color: #c0c0c0 #dfdfdf;
}
.report-app .report-content .report-main .report-view h2 {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: white;
  margin: 0 0 8px 0;
  padding: 4px 8px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  border: 1px outset #c0c0c0;
  text-align: left;
}
.report-app .report-content .report-main .report-view p {
  margin: 0;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  color: #000000;
}
.report-app .report-content .report-main .report-view::-webkit-scrollbar {
  width: 16px;
}
.report-app .report-content .report-main .report-view::-webkit-scrollbar-track {
  background: #dfdfdf;
  border: 1px inset #c0c0c0;
}
.report-app .report-content .report-main .report-view::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  border-radius: 0;
}
.report-app .report-content .report-main .report-view::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
.report-app .report-content .report-main .report-view::-webkit-scrollbar-thumb:active {
  background: #808080;
  border: 1px inset #c0c0c0;
}
.report-app .report-content .report-main .report-summary {
  display: flex;
  flex-direction: row;
  gap: 8px;
  height: 112.5px;
}
.report-app .report-content .report-main .report-summary .tasks-summary,
.report-app .report-content .report-main .report-summary .goals-summary {
  flex: 1;
  background: #ffffff;
  border: 1px inset #c0c0c0;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.report-app .report-content .report-main .report-summary .tasks-summary h3,
.report-app .report-content .report-main .report-summary .goals-summary h3 {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: white;
  margin: 0 0 4px 0;
  padding: 2px 3.5px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  border: 1px outset #c0c0c0;
  text-align: center;
}
.report-app .report-content .report-main .report-summary .tasks-summary .summary-stats,
.report-app .report-content .report-main .report-summary .goals-summary .summary-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
}
.report-app .report-content .report-main .report-summary .tasks-summary .summary-stats .stat-item,
.report-app .report-content .report-main .report-summary .goals-summary .summary-stats .stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px;
  background: #f0f0f0;
  border: 1px inset #c0c0c0;
  font-size: 13.8px;
  font-family: "MS Sans Serif", sans-serif;
}
.report-app .report-content .report-main .report-summary .tasks-summary .summary-stats .stat-item .stat-label,
.report-app .report-content .report-main .report-summary .goals-summary .summary-stats .stat-item .stat-label {
  color: #000000;
  font-weight: normal;
  font-size: 13px;
}
.report-app .report-content .report-main .report-summary .tasks-summary .summary-stats .stat-item .stat-value,
.report-app .report-content .report-main .report-summary .goals-summary .summary-stats .stat-item .stat-value {
  color: #000080;
  font-weight: bold;
  font-size: 15px;
}
.report-app .action-buttons {
  padding: 8px;
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  border-top: 1px solid #808080;
  background: #c0c0c0;
}
.report-app .action-buttons button {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  padding: 4px 8px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  color: #000000;
  cursor: pointer;
  transition: none;
  border-radius: 0;
  box-shadow: none;
  min-width: 70px;
}
.report-app .action-buttons button:hover {
  background: #d4d0c8;
}
.report-app .action-buttons button:active {
  border: 1px inset #c0c0c0;
}
.report-app .action-buttons button.primary {
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  border: 1px outset #00007B;
  font-weight: bold;
}
.report-app .action-buttons button.primary:active {
  border: 1px inset #00007B;
}
.report-app .date-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-app .date-dialog {
  width: 350px;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
}
.report-app .date-dialog .date-dialog-header {
  background: linear-gradient(135deg, #00007B, #1085D2);
  color: white;
  padding: 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  border-bottom: 1px solid #000080;
  min-height: 18px;
}
.report-app .date-dialog .date-dialog-header h3 {
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.report-app .date-dialog .date-dialog-header .close-dialog-btn {
  width: 16px;
  height: 14px;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: #000000;
  transition: none;
}
.report-app .date-dialog .date-dialog-header .close-dialog-btn:hover {
  background: #d4d4d4;
}
.report-app .date-dialog .date-dialog-header .close-dialog-btn:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.report-app .date-dialog .date-dialog-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.report-app .date-dialog .date-dialog-content label {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  font-weight: normal;
  color: #000000;
  margin-bottom: 4px;
}
.report-app .date-dialog .date-dialog-content .date-input {
  width: 100%;
  padding: 2px 4px;
  border: 1px inset #c0c0c0;
  background: #ffffff;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  color: #000000;
  outline: none;
  height: 20px;
  box-sizing: border-box;
}
.report-app .date-dialog .date-dialog-content .date-input:focus {
  background: #ffffff;
  border: 1px inset #000080;
}
.report-app .date-dialog .date-dialog-content .dialog-buttons {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}
.report-app .date-dialog .date-dialog-content .dialog-buttons .btn-primary {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  padding: 4px 12px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  color: #000000;
  cursor: pointer;
  transition: none;
  border-radius: 0;
  min-width: 80px;
}
.report-app .date-dialog .date-dialog-content .dialog-buttons .btn-primary:hover {
  background: #d4d0c8;
}
.report-app .date-dialog .date-dialog-content .dialog-buttons .btn-primary:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.report-app .date-dialog .date-dialog-content .dialog-buttons .btn-secondary {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  padding: 4px 12px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  color: #000000;
  cursor: pointer;
  transition: none;
  border-radius: 0;
  min-width: 80px;
}
.report-app .date-dialog .date-dialog-content .dialog-buttons .btn-secondary:hover {
  background: #d4d0c8;
}
.report-app .date-dialog .date-dialog-content .dialog-buttons .btn-secondary:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.report-app .week-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-app .week-selector .date-select-small {
  width: 100%;
  padding: 2px 4px;
  border: 1px inset #c0c0c0;
  background: #ffffff;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  color: #000000;
  outline: none;
  height: 22px;
  box-sizing: border-box;
}
.report-app .week-selector .date-select-small:focus {
  background: #ffffff;
  border: 1px inset #000080;
}
.report-app .week-hint {
  font-size: 10px;
  color: #666;
  font-style: italic;
  margin-top: -4px;
}
.report-app .report-summary-section {
  background: #ffffff;
  border: 1px inset #c0c0c0;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.report-app .report-summary-section h3 {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: white;
  margin: 0 0 4px 0;
  padding: 4px 8px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  border: 1px outset #c0c0c0;
  text-align: left;
}
.report-app .report-summary-section .summary-data {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.report-app .report-summary-section .summary-data .summary-item {
  background: #f0f0f0;
  border: 1px inset #c0c0c0;
  padding: 4px 8px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.report-app .report-summary-section .summary-data .summary-item .summary-label {
  font-weight: normal;
  color: #000000;
}
.report-app .report-summary-section .summary-data .summary-item .summary-value {
  font-weight: bold;
  color: #000080;
}
.report-app .empty-summary {
  flex: 1;
  background: #ffffff;
  border: 1px inset #c0c0c0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-app .empty-summary h3 {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #000080;
  text-align: center;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.report-app .empty-summary p {
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  color: #000000;
  text-align: center;
  margin: 0;
  padding: 0;
}

.chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: #f0f0f0;
  border: 1px inset #757474;
  margin: 8px 0;
  position: relative;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.bar-chart-canvas {
  background: white;
  border: 1px inset #7a7a7a;
  max-width: 100%;
  height: auto;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding: 2px;
}
.chart-legend .legend-item {
  display: flex;
  align-items: center;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
}
.chart-legend .legend-item .color-box {
  width: 10px;
  height: 10px;
  margin-right: 3px;
  border: 1px inset #858484;
}
.chart-legend .legend-item.primary .color-box {
  background-color: #4CAF50;
}
.chart-legend .legend-item.secondary .color-box {
  background-color: #2196F3;
}

.chart-controls {
  display: flex;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
}
.chart-controls button {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  padding: 1px 4px;
  font-size: 10px;
  font-family: "MS Sans Serif", sans-serif;
}
.chart-controls button:hover {
  background: #d4d0c8;
}
.chart-controls button:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}

@media (max-width: 768px) {
  .chart-container {
    padding: 4px;
  }
  .bar-chart-canvas {
    height: 250px;
  }
}
.goal-card {
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  border-radius: 0;
  padding: 8px;
  margin: 4px 0;
  box-shadow: none;
  transition: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  font-family: "MS Sans Serif", sans-serif;
  font-size: 11px;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}
.goal-card:hover {
  background: #d4d0c8;
  border: 1px outset #d4d0c8;
}
.goal-card:active {
  border: 1px inset #c0c0c0;
  background: #b8b8b8;
}

.goal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  background: linear-gradient(135deg, #00007B 0%, #1085D2 100%);
  color: white;
  padding: 2px 4px;
  font-weight: bold;
  border: 1px outset #c0c0c0;
  margin: -8px -8px 4px -8px;
}

.goal-title {
  font-size: 11px;
  font-weight: bold;
  color: white;
  margin: 0;
  line-height: 1.2;
  flex: 1;
  word-break: break-word;
  font-family: "MS Sans Serif", sans-serif;
}

.goal-actions {
  display: flex;
  gap: 2px;
  opacity: 1;
  transform: none;
  animation: none;
}

.goal-body {
  margin-top: 4px;
}

.goal-description {
  font-size: 11px;
  color: #000000 !important;
  line-height: 1.2;
  margin: 0 0 4px 0;
  padding: 4px;
  background: #ffffff !important;
  border-radius: 0;
  border: 1px inset #c0c0c0;
  font-family: "MS Sans Serif", sans-serif !important;
  font-weight: normal !important;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: visible;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
}
.goal-description.empty {
  color: #808080;
  font-style: italic;
}

.goal-progress {
  margin-bottom: 8px;
}
.goal-progress .progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
  font-size: 10px;
}
.goal-progress .progress-bar {
  height: 12px;
  border: 1px inset grey;
  background: #c0c0c0;
  padding: 1px;
  box-sizing: border-box;
}
.goal-progress .progress-fill {
  height: 100%;
  background: #000080;
}

.goal-footer {
  border-top: 1px solid #808080;
  padding-top: 6px;
  font-size: 10px;
}
.goal-footer .date-range, .goal-footer .status-indicator-container {
  display: flex;
  gap: 4px;
  align-items: center;
}
.goal-footer .status-indicator-container {
  margin-top: 4px;
}
.goal-footer .date-label {
  font-weight: bold;
}
.goal-footer .status-indicator {
  padding: 1px 4px;
  border: 1px inset #c0c0c0;
  font-weight: bold;
  font-size: 9px;
}
.goal-footer .status-indicator.notstarted {
  background: #f5f5f5;
  color: #666;
}
.goal-footer .status-indicator.inprogress {
  background: #ffeb3b;
  color: #000;
}
.goal-footer .status-indicator.partiallycompleted {
  background: #ff9800;
  color: #fff;
}
.goal-footer .status-indicator.completed {
  background: #4caf50;
  color: #fff;
}
.goal-footer .status-indicator.notcompleted {
  background: #f44336;
  color: #fff;
}

.goal-form {
  display: flex;
  flex-direction: column;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  width: 450px;
  max-width: 95vw;
  font-family: "MS Sans Serif", sans-serif;
}
.goal-form .goal-form-header {
  background: linear-gradient(135deg, #00007B, #1085D2);
  color: white;
  padding: 2px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  min-height: 18px;
}
.goal-form .goal-form-header .title-text {
  margin-left: 4px;
}
.goal-form .goal-form-header .window-controls {
  display: flex;
  gap: 2px;
}
.goal-form .goal-form-header .window-controls .control-button {
  width: 16px;
  height: 14px;
  border: 1px outset #c0c0c0;
  background: #c0c0c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goal-form .goal-form-header .window-controls .control-button.minimize::before {
  content: "_";
  margin-top: -2px;
  font-size: 8px;
}
.goal-form .goal-form-header .window-controls .control-button.maximize::before {
  content: "□";
  font-size: 8px;
}
.goal-form .goal-form-header .window-controls .control-button.close::before {
  content: "×";
  font-size: 10px;
  font-weight: bold;
}
.goal-form .goal-form-content {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 15px;
  position: relative;
}
.goal-form .goal-form-content .form-group {
  display: flex;
  flex-direction: column;
}
.goal-form .goal-form-content .full-width {
  grid-column: 1/-1;
}
.goal-form .status-message {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  font-size: 11px;
  z-index: 10;
  border: 1px outset;
  color: white;
}
.goal-form .status-message.success {
  background: #008000;
  border-color: #008000;
}
.goal-form .status-message.error {
  background: #ff0000;
  border-color: #ff0000;
}
.goal-form label {
  margin-bottom: 4px;
  font-size: 11px;
}
.goal-form input[type=text], .goal-form input[type=date], .goal-form textarea, .goal-form select {
  padding: 4px 6px;
  border: 2px inset #c0c0c0;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  background: white;
  width: 100%;
  box-sizing: border-box;
}
.goal-form textarea {
  min-height: 60px;
  resize: vertical;
}
.goal-form .button-container {
  grid-column: 1/-1;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.goal-form button {
  flex: 1;
  padding: 8px 20px;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  font-size: 11px;
  cursor: pointer;
}
.goal-form button:active {
  border-style: inset;
}

.goal-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@media (max-width: 480px) {
  .goal-form .goal-form-content {
    grid-template-columns: 1fr;
  }
}
.login-page-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("/asuka98.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}
.login-page-wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(58, 110, 165, 0.2) 0%, rgba(29, 78, 137, 0.2) 25%, rgba(87, 139, 230, 0.15) 50%, rgba(58, 110, 165, 0.2) 75%, rgba(29, 78, 137, 0.2) 100%);
}

.login-father-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 80vh;
  width: 70%;
  border: 2px outset #c0c0c0;
  background: #c0c0c0;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  font-family: "MS Sans Serif", sans-serif;
}

.login-header {
  background: linear-gradient(135deg, #00007B, #1085D2);
  color: white;
  padding: 3px 6px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px;
  border-bottom: 1px solid #808080;
}

.login-header-title {
  color: white;
  font-size: 11px;
  font-weight: bold;
}

.login-header-controls {
  display: flex;
  gap: 2px;
}

.login-control-button {
  width: 16px;
  height: 14px;
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #000000;
  font-family: "MS Sans Serif", sans-serif;
  font-weight: bold;
  transition: none;
}
.login-control-button:hover {
  background: #d4d4d4;
}
.login-control-button:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.login-control-button.minimize::before {
  content: "_";
  font-weight: bold;
  margin-top: -2px;
  font-size: 8px;
}
.login-control-button.maximize::before {
  content: "□";
  font-size: 8px;
  line-height: 1;
}
.login-control-button.close {
  background: #ff6b6b;
  border: 1px outset #ff6b6b;
}
.login-control-button.close::before {
  content: "×";
  font-size: 10px;
  font-weight: bold;
}
.login-control-button.close:hover {
  background: #ff5252;
}
.login-control-button.close:active {
  border: 1px inset #ff6b6b;
  background: #e53935;
}

.login-content-container {
  display: flex;
  flex: 1;
  height: calc(100% - 20px);
}

.right-login-container {
  background: #c0c0c0;
  border-left: 2px inset #c0c0c0;
  padding: 30px;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "MS Sans Serif", sans-serif;
}
.right-login-container h1 {
  color: #000000;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: bold;
  font-family: "MS Sans Serif", sans-serif;
  text-shadow: 1px 1px 0px #ffffff;
}

.left-login-container {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 2px inset #c0c0c0;
}

.login-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 70% center;
  border-radius: 0px;
}

.login-form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}

.login-input,
.login-input-password {
  padding: 4px 6px;
  border: 2px inset #c0c0c0;
  margin-bottom: 15px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  background: white;
  color: #000000;
  width: 100%;
  box-sizing: border-box;
}
.login-input:focus,
.login-input-password:focus {
  outline: 1px dotted #000000;
  border: 2px inset #c0c0c0;
  background: white;
}
.login-input::placeholder,
.login-input-password::placeholder {
  color: #808080;
  font-style: normal;
}

.login-form-label {
  margin-bottom: 5px;
  font-weight: normal;
  color: #000000;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
}

.login-form {
  width: 100%;
  max-width: 300px;
}
.login-form button[type=button] {
  width: 100%;
  padding: 6px 12px;
  margin: 15px 0 0 0;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  border-radius: 0;
  color: #000000;
  font-size: 11px;
  font-weight: normal;
  font-family: "MS Sans Serif", sans-serif;
  cursor: pointer;
  box-sizing: border-box;
  transition: none;
  transform: none;
}
.login-form button[type=button]:hover:not(:disabled) {
  background: #c0c0c0;
}
.login-form button[type=button]:active:not(:disabled) {
  border: 2px inset #c0c0c0;
  background: #c0c0c0;
}
.login-form button[type=button]:disabled {
  color: #808080;
  cursor: not-allowed;
  background: #c0c0c0;
}

.login-register-link {
  cursor: pointer;
  margin-top: 10px;
  font-size: 11px;
  color: #000080;
  text-align: center;
  font-family: "MS Sans Serif", sans-serif;
  text-decoration: underline;
}
.login-register-link:hover {
  color: #800080;
}

.register-page-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("/asuka98.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1;
}
.register-page-wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(58, 110, 165, 0.2) 0%, rgba(29, 78, 137, 0.2) 25%, rgba(87, 139, 230, 0.15) 50%, rgba(58, 110, 165, 0.2) 75%, rgba(29, 78, 137, 0.2) 100%);
}

.register-father-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 80vh;
  width: 70%;
  border: 2px outset #c0c0c0;
  background: #c0c0c0;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  font-family: "MS Sans Serif", sans-serif;
}

.register-header {
  background: linear-gradient(135deg, #00007B, #1085D2);
  color: white;
  padding: 3px 6px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px;
  border-bottom: 1px solid #808080;
}

.register-header-title {
  color: white;
  font-size: 11px;
  font-weight: bold;
}

.register-header-controls {
  display: flex;
  gap: 2px;
}

.register-control-button {
  width: 16px;
  height: 14px;
  background: #c0c0c0;
  border: 1px outset #c0c0c0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #000000;
  font-family: "MS Sans Serif", sans-serif;
  font-weight: bold;
  transition: none;
}
.register-control-button:hover {
  background: #d4d4d4;
}
.register-control-button:active {
  border: 1px inset #c0c0c0;
  background: #a8a8a8;
}
.register-control-button.minimize::before {
  content: "_";
  font-weight: bold;
  margin-top: -2px;
  font-size: 8px;
}
.register-control-button.maximize::before {
  content: "□";
  font-size: 8px;
  line-height: 1;
}
.register-control-button.close {
  background: #ff6b6b;
  border: 1px outset #ff6b6b;
}
.register-control-button.close::before {
  content: "×";
  font-size: 10px;
  font-weight: bold;
}
.register-control-button.close:hover {
  background: #ff5252;
}
.register-control-button.close:active {
  border: 1px inset #ff6b6b;
  background: #e53935;
}

.register-content-container {
  display: flex;
  flex: 1;
  height: calc(100% - 20px);
}

.right-register-container {
  background: #c0c0c0;
  border-left: 2px inset #c0c0c0;
  padding: 30px;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "MS Sans Serif", sans-serif;
}
.right-register-container h1 {
  color: #000000;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: bold;
  font-family: "MS Sans Serif", sans-serif;
  text-shadow: 1px 1px 0px #ffffff;
}

.left-register-container {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 2px inset #c0c0c0;
}

.register-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 10% center;
  border-radius: 0px;
}

.register-form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}

.register-input,
.register-input-password {
  padding: 4px 6px;
  border: 2px inset #c0c0c0;
  margin-bottom: 15px;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
  background: white;
  color: #000000;
  width: 100%;
  box-sizing: border-box;
}
.register-input:focus,
.register-input-password:focus {
  outline: 1px dotted #000000;
  border: 2px inset #c0c0c0;
  background: white;
}
.register-input::placeholder,
.register-input-password::placeholder {
  color: #808080;
  font-style: normal;
}

.register-form-label {
  margin-bottom: 5px;
  font-weight: normal;
  color: #000000;
  font-size: 11px;
  font-family: "MS Sans Serif", sans-serif;
}

.register-form {
  width: 100%;
  max-width: 300px;
}
.register-form .register-button {
  width: 100%;
  padding: 6px 12px;
  margin: 15px 0 0 0;
  background: #c0c0c0;
  border: 2px outset #c0c0c0;
  border-radius: 0;
  color: #000000;
  font-size: 11px;
  font-weight: normal;
  font-family: "MS Sans Serif", sans-serif;
  cursor: pointer;
  box-sizing: border-box;
  transition: none;
  transform: none;
}
.register-form .register-button:hover:not(:disabled) {
  background: #c0c0c0;
}
.register-form .register-button:active:not(:disabled) {
  border: 2px inset #c0c0c0;
  background: #c0c0c0;
}
.register-form .register-button:disabled {
  color: #808080;
  cursor: not-allowed;
  background: #c0c0c0;
}

.register-login-link {
  cursor: pointer;
  margin-top: 10px;
  font-size: 11px;
  color: #000080;
  text-align: center;
  font-family: "MS Sans Serif", sans-serif;
  text-decoration: underline;
}
.register-login-link:hover {
  color: #800080;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes themeSwitch {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes orangeGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes orangeFloatingOrbs {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.7;
  }
  33% {
    transform: translate(20px, -20px) rotate(120deg);
    opacity: 0.9;
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
    opacity: 0.5;
  }
}
@keyframes warmGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes warmFloatingOrbs {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  33% {
    transform: translate(15px, -15px) rotate(120deg);
    opacity: 0.8;
  }
  66% {
    transform: translate(-15px, 15px) rotate(240deg);
    opacity: 0.4;
  }
}
@keyframes loginShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes loginGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes loginGradientDark {
  0% {
    background-position: 0% 50%;
  }
  33% {
    background-position: 100% 50%;
  }
  66% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
p.updated {
  animation: pulse 0.3s ease-in-out;
}

.container.dark-theme {
  animation: themeSwitch 0.3s ease-in-out;
}
.container.light-theme {
  animation: themeSwitch 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
    margin: 10px;
  }
  .theme-toggle {
    top: 15px;
    right: 15px;
  }
  .theme-btn {
    padding: 8px !important;
    font-size: 1.3rem !important;
    min-width: 40px !important;
    height: 40px !important;
  }
  h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  button {
    padding: 12px 25px;
    font-size: 1.1rem;
    margin: 0 5px;
  }
  p {
    font-size: 2.5rem;
    margin: 20px 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 25px 15px;
  }
  .theme-toggle {
    top: 10px;
    right: 10px;
  }
  .theme-btn {
    padding: 6px !important;
    font-size: 1.2rem !important;
    min-width: 35px !important;
    height: 35px !important;
  }
  h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  button {
    padding: 10px 20px;
    font-size: 1rem;
    min-width: 50px;
  }
  p {
    font-size: 2rem;
  }
  .button-container {
    flex-direction: column;
    gap: 10px;
  }
}
