@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Light Theme Colors */
  --primary-color: #667eea;
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-color: #f093fb;
  --accent-color: #4ecdc4;
  --success-color: #4caf50;
  --danger-color: #f44336;
  --warning-color: #ff9800;

  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.25);
  --bg-card: rgba(255, 255, 255, 0.9);

  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-muted: #a0aec0;

  --border-color: rgba(255, 255, 255, 0.18);
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] {
  /* Enhanced Dark Theme Colors */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-primary: linear-gradient(135deg, #0c0c24 0%, #1a1a2e 50%, #16213e 100%);
  --bg-secondary: #1a1a2e;
  --bg-glass: rgba(26, 26, 46, 0.8);
  --bg-card: rgba(42, 42, 66, 0.9);

  --text-primary: #f7fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #a0aec0;

  --border-color: rgba(102, 126, 234, 0.2);
  --shadow-light: 0 4px 20px rgba(102, 126, 234, 0.1);
  --shadow-medium: 0 8px 32px rgba(102, 126, 234, 0.15);
  --shadow-heavy: 0 20px 40px rgba(102, 126, 234, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
}

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
  z-index: -2;
  animation: backgroundShift 20s ease-in-out infinite;
}

[data-theme="dark"] .background-pattern {
  background:
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.25) 0%, transparent 70%),
    radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.2) 0%, transparent 70%),
    radial-gradient(circle at 60% 60%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
}

.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-gradient);
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
  filter: blur(1px);
}

[data-theme="dark"] .shape {
  opacity: 0.3;
  filter: blur(2px);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.shape1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.shape2 {
  width: 120px;
  height: 120px;
  top: 70%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 15s;
}

.shape3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 20%;
  animation-delay: 4s;
  animation-duration: 10s;
}

.shape4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
  animation-duration: 18s;
}

/* Additional animated shapes for dark theme */
[data-theme="dark"] .floating-shapes::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

[data-theme="dark"] .floating-shapes::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(240, 147, 251, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 20%;
  right: 30%;
  animation: rotate 20s linear infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-20px) rotate(180deg) scale(1.1);
  }
}

@keyframes backgroundShift {

  0%,
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }

  25% {
    filter: hue-rotate(90deg) brightness(1.1);
  }

  50% {
    filter: hue-rotate(180deg) brightness(0.9);
  }

  75% {
    filter: hue-rotate(270deg) brightness(1.1);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.app-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: var(--shadow-light);
}

.logo-text .app-title {
  font-size: 28px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.logo-text .app-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.header-controls {
  display: flex;
  gap: 10px;
}

.icon-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(10px);
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: var(--primary-color);
  color: white;
}

.main-container {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .main-container {
  background: var(--bg-glass);
  border: 1px solid rgba(102, 126, 234, 0.3);
  box-shadow:
    var(--shadow-heavy),
    0 0 50px rgba(102, 126, 234, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .main-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.05) 0%,
      transparent 30%,
      transparent 70%,
      rgba(240, 147, 251, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .main-container>* {
  position: relative;
  z-index: 1;
}

.quote-section {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.quote-icon {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
  opacity: 0.7;
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

[data-theme="dark"] .stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(102, 126, 234, 0.2);
  box-shadow:
    var(--shadow-light),
    0 0 20px rgba(102, 126, 234, 0.1);
}

[data-theme="dark"] .stat-card:hover {
  transform: translateY(-3px);
  box-shadow:
    var(--shadow-medium),
    0 0 30px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.4);
}

.stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--primary-gradient);
  color: white;
}

.stat-icon.completed {
  background: linear-gradient(135deg, var(--success-color), #45a049);
}

.stat-icon.pending {
  background: linear-gradient(135deg, var(--warning-color), #f57c00);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.input-section {
  margin-bottom: 30px;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 4px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-container:focus-within {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
  border-color: var(--primary-color);
}

.input-icon {
  color: var(--text-muted);
  margin-left: 15px;
  font-size: 16px;
}

#taskInput {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 16px 15px;
  font-size: 16px;
  color: var(--text-primary);
  font-family: inherit;
}

#taskInput::placeholder {
  color: var(--text-muted);
}

.add-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 12px;
  background: var(--primary-gradient);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

[data-theme="dark"] .add-btn {
  background: var(--primary-gradient);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

[data-theme="dark"] .add-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.filter-section {
  margin-bottom: 20px;
}

.filter-tabs {
  display: flex;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 4px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .filter-tabs {
  background: var(--bg-card);
  border: 1px solid rgba(102, 126, 234, 0.2);
  box-shadow:
    var(--shadow-light),
    0 0 15px rgba(102, 126, 234, 0.1);
}

.filter-tab {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
}

.filter-tab:hover {
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary-color);
}

.filter-tab.active {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.tasks-section {
  min-height: 200px;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.empty-state p {
  font-size: 14px;
}

.task-list {
  list-style: none;
}

.task-item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideIn 0.3s ease-out;
}

.task-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-medium);
}

[data-theme="dark"] .task-item {
  background: var(--bg-card);
  border: 1px solid rgba(102, 126, 234, 0.15);
  box-shadow:
    var(--shadow-light),
    0 0 15px rgba(102, 126, 234, 0.05);
}

[data-theme="dark"] .task-item:hover {
  transform: translateX(6px);
  box-shadow:
    var(--shadow-medium),
    0 0 25px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.task-item.completed {
  opacity: 0.7;
}

.task-item.completed .task-text {
  text-decoration: line-through;
  color: var(--text-muted);
}

.task-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.task-checkbox.checked {
  background: var(--primary-gradient);
  border-color: var(--primary-color);
}

.task-checkbox.checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.task-text {
  flex: 1;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.5;
}

.task-actions {
  display: flex;
  gap: 8px;
}

.task-action-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.task-action-btn.delete {
  background: rgba(244, 67, 54, 0.1);
  color: var(--danger-color);
}

.task-action-btn.delete:hover {
  background: var(--danger-color);
  color: white;
  transform: scale(1.1);
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.toast {
  background: var(--bg-card);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--primary-color);
  min-width: 250px;
  animation: slideInRight 0.3s ease-out;
  backdrop-filter: blur(10px);
}

.toast.success {
  border-left-color: var(--success-color);
}

.toast.error {
  border-left-color: var(--danger-color);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
/* Large tablets and small desktops (1024px and down) */
@media (max-width: 1024px) {
  .app-container {
    max-width: 700px;
    padding: 18px;
  }

  .main-container {
    padding: 25px;
  }

  .stats-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .stat-card {
    padding: 18px;
  }
}

/* Standard tablets (768px and down) */
@media (max-width: 768px) {
  .app-container {
    padding: 15px;
  }

  .main-container {
    padding: 20px;
    border-radius: 20px;
  }

  .app-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 25px;
  }

  .header-controls {
    justify-content: center;
  }

  .stats-section {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }

  .filter-tabs {
    flex-direction: column;
    gap: 2px;
  }

  .filter-tab {
    padding: 14px 16px;
    font-size: 15px;
  }

  .logo-text .app-title {
    font-size: 24px;
  }

  .quote {
    font-size: 15px;
  }

  .input-container {
    padding: 6px;
  }

  #taskInput {
    padding: 14px 12px;
    font-size: 15px;
  }

  .add-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .task-item {
    padding: 16px;
    border-radius: 14px;
  }

  .task-text {
    font-size: 15px;
  }

  .toast-container {
    left: 20px;
    right: 20px;
    top: 15px;
  }

  .toast {
    min-width: auto;
    padding: 14px 18px;
  }

  /* Reduce background animations on tablets */
  .shape {
    opacity: 0.05;
  }

  [data-theme="dark"] .shape {
    opacity: 0.2;
  }
}

/* Small tablets and large phones (640px and down) */
@media (max-width: 640px) {
  .app-container {
    padding: 12px;
  }

  .main-container {
    padding: 18px;
    border-radius: 18px;
  }

  .app-header {
    margin-bottom: 20px;
  }

  .logo-section {
    gap: 12px;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .logo-text .app-title {
    font-size: 22px;
  }

  .stats-section {
    margin-bottom: 20px;
  }

  .stat-card {
    padding: 15px;
    border-radius: 14px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .stat-number {
    font-size: 20px;
  }

  .quote-section {
    margin-bottom: 25px;
  }

  .input-section {
    margin-bottom: 25px;
  }

  .filter-section {
    margin-bottom: 18px;
  }
}

/* Mobile phones (480px and down) */
@media (max-width: 480px) {
  .app-container {
    padding: 10px;
  }

  .main-container {
    padding: 16px;
    border-radius: 16px;
  }

  .app-header {
    margin-bottom: 18px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 10px;
  }

  .logo-text .app-title {
    font-size: 20px;
  }

  .logo-text .app-subtitle {
    font-size: 12px;
  }

  .header-controls {
    gap: 8px;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .quote {
    font-size: 14px;
    line-height: 1.5;
  }

  .quote-icon {
    font-size: 20px;
  }

  .stats-section {
    margin-bottom: 18px;
  }

  .stat-card {
    padding: 14px;
    border-radius: 12px;
    gap: 12px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 10px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }

  .input-container {
    padding: 4px;
    border-radius: 14px;
  }

  #taskInput {
    padding: 12px 10px;
    font-size: 14px;
  }

  .add-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 10px;
  }

  .input-icon {
    font-size: 14px;
    margin-left: 12px;
  }

  .filter-tabs {
    border-radius: 10px;
    padding: 3px;
  }

  .filter-tab {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 7px;
    gap: 6px;
  }

  .filter-tab i {
    font-size: 12px;
  }

  .task-item {
    padding: 14px;
    gap: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .task-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  }

  .task-checkbox.checked::after {
    font-size: 10px;
  }

  .task-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .task-action-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
    border-radius: 6px;
  }

  .empty-state {
    padding: 30px 15px;
  }

  .empty-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .empty-state h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .empty-state p {
    font-size: 13px;
  }

  .toast-container {
    left: 15px;
    right: 15px;
    top: 10px;
  }

  .toast {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
  }

  /* Further reduce animations on mobile */
  .shape {
    opacity: 0.03;
    animation-duration: 20s;
  }

  [data-theme="dark"] .shape {
    opacity: 0.15;
  }

  /* Simplify background pattern on mobile */
  .background-pattern {
    animation: none;
  }

  [data-theme="dark"] .floating-shapes::before,
  [data-theme="dark"] .floating-shapes::after {
    display: none;
  }
}

/* Very small phones (360px and down) */
@media (max-width: 360px) {
  .app-container {
    padding: 8px;
  }

  .main-container {
    padding: 14px;
  }

  .logo-text .app-title {
    font-size: 18px;
  }

  .logo-text .app-subtitle {
    font-size: 11px;
  }

  .quote {
    font-size: 13px;
  }

  .stat-card {
    padding: 12px;
  }

  .stat-number {
    font-size: 16px;
  }

  .filter-tab {
    padding: 8px 10px;
    font-size: 12px;
  }

  .task-item {
    padding: 12px;
  }

  .task-text {
    font-size: 13px;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .app-container {
    padding: 10px;
  }

  .main-container {
    padding: 15px;
  }

  .app-header {
    margin-bottom: 15px;
  }

  .quote-section {
    margin-bottom: 15px;
  }

  .stats-section {
    margin-bottom: 15px;
  }

  .input-section {
    margin-bottom: 15px;
  }

  .filter-section {
    margin-bottom: 10px;
  }

  .shape {
    display: none;
  }
}
