:root {
  /* Theme Variables - Default Dark */
  --bg-app: #121212;
  --bg-canvas: #1e1e1e;
  --bg-panel: rgba(30, 30, 36, 0.75); /* More transparent */
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-color: #00c2ff;
  --border-color: rgba(255, 255, 255, 0.08);
  --input-bg: #2a2a32;
  /* Realistic float shadow */
  --shadow-panel:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 20px 25px -5px rgba(0, 0, 0, 0.2);
  --toolbar-bg: rgba(30, 30, 36, 0.75);
}

/* Light Mode */
.lightTheme {
  --bg-app: #f5f6f7;
  --bg-canvas: #ffffff;
  --bg-panel: rgba(255, 255, 255, 0.75);
  --text-primary: #121212; /* Dark text */
  --text-secondary: #5f6368;
  --input-bg: #f0f0f0; /* Light gray inputs */
  --border-color: rgba(0, 0, 0, 0.05);
  --toolbar-bg: rgba(255, 255, 255, 0.75);
  --shadow-panel:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 20px 25px -5px rgba(0, 0, 0, 0.05);
}
/* ... */
.floatingPanel {
  position: absolute;
  top: 80px;
  width: 15vw;
  background-color: var(--bg-panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* Lighting borders */
  border: 1px solid var(--border-color);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 12px;
  box-shadow: var(--shadow-panel);
  display: flex;
  flex-direction: column;
  z-index: 50;
  max-height: calc(100vh - 160px);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s ease;
}

.floatingPanel:hover {
  transform: translateY(-8px) scale(1.005);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* Light theme border overrides */
.lightTheme .floatingPanel,
.lightTheme .bottomToolbar {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
/* ... */
.bottomToolbar {
  position: absolute;
  bottom: 30px; /* Or 40px from previous scale step */
  left: 50%;
  transform: translateX(-50%);
  background: var(--toolbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid var(--border-color);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);

  padding: 16px 24px;
  border-radius: 20px; /* Rounder */
  display: flex;
  gap: 100px;
  align-items: center;
  box-shadow: var(--shadow-panel);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s ease;
  z-index: 100;
  width: 50vw;
  justify-content: center;
}

.bottomToolbar:hover {
  transform: translateX(-50%) translateY(-8px) scale(1.005);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.lightTheme .layerItem {
  background: #f0f0f0;
  color: #333;
}
.lightTheme .navBtn {
  background: #f0f0f0;
  color: #333;
}
.lightTheme .navBtn:hover {
  background: #e0e0e0;
}
.lightTheme .shapeOption {
  background: #f0f0f0;
}

* {
  box-sizing: border-box;
  user-select: none;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: "Inter", sans-serif;
  background-color: var(--bg-app);
  color: var(--text-primary);
  overflow: hidden;
}

.appContainer {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Top Nav */
.topNav {
  height: 90px; /* Increased height */
  background-color: var(--bg-panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
  z-index: 100;
  position: relative;
}

.navLeft,
.navRight {
  flex: 1;
  display: flex;
  align-items: center;
}

.navRight {
  justify-content: flex-end;
  gap: 12px;
}

.navCenter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* User Profile */
.userProfile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px; /* Increased padding */
  border-radius: 10px;
  transition: background 0.2s;
  cursor: pointer;
}

.userProfile:hover {
  background: rgba(255, 255, 255, 0.05);
}

.avatar {
  width: 54px; /* Increased size for 30px text */
  height: 54px;
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
}

.username {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 30px; /* 30px as requested */
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 50px; /* Larger font as requested */
  letter-spacing: -1px;
}

.logoIcon {
  width: 60px; /* Larger icon to match text */
  height: 60px;
  background: linear-gradient(
    135deg,
    #0cebeb,
    #20e3b2,
    #29ffc6
  ); /* Vibrant Gradient */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  font-weight: 900;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(32, 227, 178, 0.3);
}

.navBtn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 24px; /* Increased padding */
  border-radius: 12px;
  font-size: 18px; /* Increased font size */
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap; /* Prevent text wrap */
  flex-shrink: 0; /* Prevent shrinking */
}

.navBtn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.themeToggle {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  width: 54px; /* Match avatar size */
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.themeToggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* Canvas */
.canvasArea {
  flex: 1;
  position: relative;
  background-color: var(--bg-canvas);
  background-image:
    linear-gradient(rgba(128, 128, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 128, 128, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  overflow: hidden;
  margin: 20px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.artboard {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Floating Panels */
.floatingPanel {
  position: absolute;
  top: 80px;
  width: 15vw;
  background-color: var(--bg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-panel);
  display: flex;
  flex-direction: column;
  z-index: 50;
  max-height: calc(100vh - 160px);
  transition:
    transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
  /* Visibility/Opacity transition for hidden state handling if needed, 
     but currently we use .hidden { display: none }. 
     For mobile animation we might need to override .hidden behavior.
  */
}

/* Override utility .hidden for panels on mobile to allow animation if we used visibility,
   but since we use display:none, animation is hard. 
   Let's stick to display:none for now to match existing JS logic. 
   The Media Query transform logic will apply when it is NOT display:none.
*/

.floatingPanel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Specific Panel Positioning */
.leftPanel {
  top: 120px;
  left: 32px;
  right: auto;
  bottom: auto;
}

.rightPanel {
  top: 120px;
  right: 32px;
  left: auto;
  bottom: auto;
}

.panelHeader {
  padding: 16px;
  font-weight: 600;
  font-size: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: grab;
}
.panelHeader:active {
  cursor: grabbing;
}

.closeIcon {
  color: var(--text-secondary);
  cursor: pointer;
}

.panelContent {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
  /* Hide scrollbar for Chrome/Safari/Opera */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.panelContent::-webkit-scrollbar {
  display: none;
}

/* Layers List Styling */
.layerItem {
  background: #2a2a32;
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  border: 1px solid transparent;
}

.layerItem.selected {
  background: var(--accent-color);
  color: white;
  border-color: transparent;
}

/* Properties Inputs */
.controlGroup {
  margin-bottom: 16px;
}

.controlGroup label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.darkInput {
  width: 100%;
  background: var(--input-bg);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 13px;
}

.darkInput:focus {
  outline: 1px solid var(--accent-color);
}

.hidden {
  display: none !important;
}

/* Bottom Toolbar */
/* Bottom Toolbar */
.bottomToolbar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);

  /* Glassmorphism */
  background: rgba(30, 30, 36, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* Glass Borders (Lighting) */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);

  padding: 20px 40px;
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s ease;
  z-index: 100;
  width: auto;
  min-width: 600px;
  justify-content: center;
}

.bottomToolbar:hover {
  transform: translateX(-50%) translateY(-4px); /* Keep centering while lifting */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.toolbarBtn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Glassmorphism Button */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  margin: 0 4px;
  transition: all 0.2s ease;
  padding: 0;
}

.toolbarBtn svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.toolbarBtn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 194, 255, 0.2);
}

.toolbarBtn.active {
  background: rgba(0, 194, 255, 0.8); /* Accent glass */
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 12px rgba(0, 194, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Color Picker Customization */
.colorPickerWrapper {
  width: 100%;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 2px solid #333;
}
input[type="color"] {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  transform: scale(1.5); /* Hack to fill area */
}

/* Hex Input Wrapper */
.hexInputWrapper {
  display: flex;
  align-items: center;
  background: var(--input-bg);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid transparent; /* default border */
}

.hexInputWrapper:focus-within {
  outline: 1px solid var(--accent-color);
}

.hexPrefix {
  padding-left: 12px;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13px;
  user-select: none;
}

.hexInput {
  /* Override default input styles for embedded input */
  background: transparent !important;
  padding-left: 4px !important;
  outline: none !important;
}

/* Color Presets */
.colorPresets {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.presetSwatch {
  width: 24px;
  height: 24px;
  border-radius: 4px; /* or 50% for circles */
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.1s;
}

.presetSwatch:hover {
  transform: scale(1.1);
  border-color: white;
}

/* Canvas Elements */
.canvasElement {
  position: absolute;
  cursor: move;
}
.canvasElement.selected {
  outline: 2px solid var(--accent-color);
}

/* Resize Handles */
.resizeHandle {
  width: 8px;
  height: 8px;
  background-color: white;
  border: 1px solid var(--accent-color);
  position: absolute;
  z-index: 10000;
  border-radius: 50%; /* Modern circular handles */
}

.handleTl {
  top: -5px;
  left: -5px;
  cursor: nwse-resize;
}
.handleTr {
  top: -5px;
  right: -5px;
  cursor: nesw-resize;
}
.handleBl {
  bottom: -5px;
  left: -5px;
  cursor: nesw-resize;
}
.handleBr {
  bottom: -5px;
  right: -5px;
  cursor: nwse-resize;
}

/* Panel Footer Controls */
.panelFooter {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.emptyState {
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 20px;
}

/* Shape Modal */
.shapeModal {
  position: absolute;
  bottom: 115px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-panel);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-panel);
  z-index: 101;
  width: 25vw;
}
.modalHeader {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.shapeGrid {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.shapeOption {
  width: 36px;
  height: 36px;
  background: #2a2a32;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent-color);
  font-size: 18px;
}
.shapeOption:hover {
  background: var(--accent-color);
  color: white;
}

.closeModal {
  cursor: pointer;
}

/* Custom Color Picker Styles */
.fillControlRow {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative; /* For popup positioning context if needed */
}

.colorPreviewBox {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  background-image:
    linear-gradient(45deg, #ccc 25%, transparent 25%),
    linear-gradient(-45deg, #ccc 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ccc 75%),
    linear-gradient(-45deg, transparent 75%, #ccc 75%);
  background-size: 10px 10px;
  background-position:
    0 0,
    0 5px,
    5px -5px,
    -5px 0px;
  background-color: white;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.1s;
}

.colorPreviewBox:hover {
  transform: scale(1.05);
  border-color: var(--accent-color);
}

.previewInner {
  width: 100%;
  height: 100%;
  background-color: transparent; /* Set via JS */
}

.hexInputField {
  flex: 1;
  text-transform: uppercase;
  font-family: monospace;
}

/* Color Popup */
.colorPopup {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 220px;
  background-color: var(--bg-panel);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  padding: 12px;
  z-index: 200;
  border: 1px solid var(--border-color);
}

.colorPopup.hidden {
  display: none;
}

.popupSection {
  margin-bottom: 12px;
}

.popupSection label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}

.customColorWrapper {
  width: 100%;
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
}

.nativeColorTrigger {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  transform: scale(1.1); /* Ensure it covers bg */
}

.colorPresetsGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

/* Preset Styling Reuse/Overrides */
.presetOption {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s;
}
.presetOption:hover {
  transform: scale(1.15);
  z-index: 10;
  border-color: white;
}

/* Layer Rename Input */
.layerRenameInput {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--accent-color);
  color: var(--text-primary);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

/* --- Responsiveness --- */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
  .topNav {
    padding: 0 16px;
  }

  .logo {
    font-size: 32px;
  }
  .logoIcon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .bottomToolbar {
    min-width: unset;
    width: 80%;
    gap: 16px;
    padding: 16px 24px;
  }

  .floatingPanel {
    width: 35vw; /* Reduce constraints for tablet */
    min-width: 260px; /* Ensure usage space */
    max-height: 70vh; /* Ensure it fits if keyboard appears or top bar is large */
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .topNav {
    height: 60px;
    padding: 0 12px;
  }

  /* Simplify Navbar for Mobile */
  .username {
    display: none; /* Hide username, keep avatar */
  }
  .navBtn span {
    display: none; /* Hide text in buttons if any */
  }
  .navBtn {
    padding: 8px;
    font-size: 12px;
  }

  .logo {
    font-size: 24px;
    gap: 8px;
  }
  .logoIcon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .themeToggle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Panels become bottom sheets */
  .floatingPanel {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    top: auto; /* Override desktop top: 120px */
    bottom: 0;
    border-radius: 20px 20px 0 0;
    max-height: 50vh;
    animation: slideUp 0.3s ease-out;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .bottomToolbar {
    width: 95%;
    bottom: 20px;
    padding: 12px;
    border-radius: 16px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .bottomToolbar.pushedDown {
    transform: translateX(-50%) translateY(200%); /* Hide offscreen */
  }

  .toolbarBtn {
    width: 44px;
    height: 44px;
  }
  .toolbarBtn svg {
    width: 24px;
    height: 24px;
  }

  .shapeModal {
    width: 90%;
    bottom: 90px;
  }

  .modalBox {
    width: 90vw;
    font-size: unset; /* Reset explicit large font */
  }
  .modalBox p {
    font-size: 16px;
  }
}

/* Confirmation Modal */
.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalBox {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
  width: 22vw;
  min-width: 320px;
  max-width: 90vw; /* Prevent horizontal overflow */
  min-height: 20vh;
  max-height: 90vh; /* Prevent vertical overflow */
  overflow-y: auto; /* Allow scrolling if content is too tall */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.modalBox h3 {
  margin: 0;
  color: white;
  font-size: 1.5em;
}

.modalBox p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.modalActions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.modalBtn {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s;
}

.modalBtn.secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.modalBtn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modalBtn.danger {
  background: #ff4757;
  color: white;
}
.modalBtn.danger:hover {
  background: #e04050;
}
