:root {
  --primary-color: #4a6da7;
  --primary-hover: #5a7db7;
  --background-dark: #121212;
  --background-light: #f5f5f5;
  --card-dark: #1e1e1e;
  --card-light: #ffffff;
  --text-dark: #e0e0e0;
  --text-light: #333333;
  --accent-color: #50c878;
  --danger-color: #ff5555;
  --border-dark: #333;
  --border-light: #ddd;
  --tab-active-dark: #2c2c2c;
  --tab-active-light: #e0e0e0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-dark);
  color: var(--text-dark);
  transition: background-color 0.3s, color 0.3s;
}

body.light-mode {
  background-color: var(--background-light);
  color: var(--text-light);
}

.container {
  max-width: 1200px; /* This will be overridden by JS */
  margin: 0 auto;
  padding: 20px;
  transition: max-width 0.3s ease;
}

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

.search-container {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
}

.search-form {
  display: flex;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-dark);
  transition: all 0.3s;
}

.light-mode .search-input {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-light);
}

.search-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.light-mode .search-input:focus {
  background-color: rgba(0, 0, 0, 0.08);
}

.tools {
  display: flex;
  gap: 10px;
}

.action-button {
  background-color: transparent;
  color: var(--text-dark);
  border: none;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.light-mode .action-button {
  color: var(--text-light);
}

.action-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.light-mode .action-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.action-button i {
  font-size: 18px;
}

.tabs-container {
  display: flex;
  overflow-x: auto;
  margin-bottom: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px 8px 0 0;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) transparent;
}

.light-mode .tabs-container {
  background-color: rgba(0, 0, 0, 0.05);
}

.tabs-container::-webkit-scrollbar {
  height: 4px;
}

.tabs-container::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 4px;
}

.tab {
  padding: 12px 20px;
  background-color: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dark);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.light-mode .tab {
  color: var(--text-light);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.tab.active {
  background-color: var(--tab-active-dark);
  font-weight: 500;
}

.light-mode .tab.active {
  background-color: var(--tab-active-light);
}

.tab:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.light-mode .tab:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.add-tab {
  padding: 12px 15px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: bold;
  font-size: 16px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-tab:hover {
  background-color: #60d888;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Default, will be overridden by JS */
  gap: 16px;
  background-color: var(--card-dark);
  padding: 24px;
  border-radius: 0 0 8px 8px;
  min-height: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.light-mode .grid-container {
  background-color: var(--card-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-control-sm {
  padding: 8px;
  font-size: 14px;
}

.settings-section {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--border-dark);
}

.light-mode .settings-section {
  border-top: 1px solid var(--border-light);
}

.grid-item {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  min-height: 120px;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 16px;
  overflow: hidden;
  border: 2px solid transparent;
}

.light-mode .grid-item {
  background-color: rgba(0, 0, 0, 0.02);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.grid-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.light-mode .grid-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.grid-item.dragging {
  opacity: 0.7;
  border: 2px dashed var(--primary-color);
}

.bookmark-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}

.bookmark-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: 10px;
  background-color: white;
  padding: 4px;
  transition: all 0.2s;
}

.icon-preview-container {
  display: inline-block;
  margin-left: 10px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#iconPreview {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.bookmark-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  word-break: break-word;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bookmark-url {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.light-mode .bookmark-url {
  color: rgba(0, 0, 0, 0.5);
}

.empty-item {
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

.light-mode .empty-item {
  border: 2px dashed rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.2);
}

.empty-item:hover {
  border: 2px solid transparent;
  color: var(--primary-color);
}

.dropdown {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
}

.dropdown-toggle {
  background-color: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 4px;
}

.light-mode .dropdown-toggle {
  color: var(--text-light);
}

.grid-item:hover .dropdown-toggle {
  opacity: 0.7;
}

.dropdown-toggle:hover {
  opacity: 1 !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.light-mode .dropdown-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: var(--card-dark);
  border-radius: 8px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.light-mode .dropdown-menu {
  background-color: var(--card-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-menu.show {
  display: block;
  animation: fadeIn 0.2s;
}

.dropdown-item {
  padding: 10px 16px;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}

.light-mode .dropdown-item {
  color: var(--text-light);
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.light-mode .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-item i {
  margin-right: 10px;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: var(--card-dark);
  margin: 5% auto;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.3s;
}

.light-mode .modal-content {
  background-color: var(--card-light);
}

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

.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.close {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

.light-mode .close {
  color: rgba(0, 0, 0, 0.5);
}

.close:hover {
  color: var(--text-dark);
  transform: scale(1.1);
}

.light-mode .close:hover {
  color: var(--text-light);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-dark);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-dark);
  font-size: 16px;
  transition: all 0.2s;
}

.light-mode .form-control {
  border: 1px solid var(--border-light);
  background-color: #fff;
  color: var(--text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 109, 167, 0.2);
}

/* Fix for dropdown contrast issues */
select.form-control {
  background-color: #333;
  color: white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.light-mode select.form-control {
  background-color: white;
  color: #333;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
}

/* Style for dropdown options */
select.form-control option {
  background-color: #333;
  color: white;
  padding: 10px;
}

.light-mode select.form-control option {
  background-color: white;
  color: #333;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-danger {
  background-color: var(--danger-color);
  color: white;
}

.btn-danger:hover {
  background-color: #ff6666;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-dark);
}

.light-mode .btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-light);
}

.icon-help {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.light-mode .icon-help {
  color: rgba(0, 0, 0, 0.6);
}

.icon-preview-edit {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#editIconPreview {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 4px;
  background-color: white;
  border-radius: 8px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 14px;
}

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

.modal-actions {
  display: flex;
  gap: 12px;
}

.delete-zone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 100px;
  border: 2px dashed var(--danger-color);
  border-radius: 12px;
  background-color: rgba(255, 85, 85, 0.1);
  color: var(--danger-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}

.delete-zone.active {
  opacity: 1;
  pointer-events: auto;
}

.delete-zone.drag-over {
  background-color: rgba(255, 85, 85, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 85, 85, 0.3);
}

.menu-list {
  margin-top: 20px;
  display: none;
  background-color: var(--card-dark);
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  right: 20px;
  top: 60px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 20;
}

.light-mode .menu-list {
  background-color: var(--card-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-list.show {
  display: block;
  animation: fadeIn 0.2s;
}

.menu-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.light-mode .menu-item {
  color: var(--text-light);
}

.menu-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.light-mode .menu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu-item i {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.help-content, .settings-content {
  background-color: var(--card-dark);
  padding: 24px;
  border-radius: 12px;
  max-width: 600px;
  margin: 5% auto;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.light-mode .help-content, .light-mode .settings-content {
  background-color: var(--card-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.help-title, .settings-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}

.light-mode .help-title, .light-mode .settings-title {
  border-bottom: 1px solid var(--border-light);
}

.help-section {
  margin-bottom: 20px;
}

.help-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.help-section p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.help-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.help-feature i {
  margin-right: 12px;
  color: var(--accent-color);
  margin-top: 3px;
}

.settings-option {
  margin-bottom: 20px;
}

.settings-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.settings-option input[type="checkbox"] {
  margin-right: 12px;
  width: 18px;
  height: 18px;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.toggle-label {
  margin-right: 12px;
}

.theme-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: .4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    padding: 16px;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .search-input {
    padding: 10px 12px;
  }

  .tab {
    padding: 10px 12px;
  }

  .tools {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-dark);
    padding: 10px;
    display: flex;
    justify-content: space-around;
    z-index: 30;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  }

  .light-mode .tools {
    background-color: var(--card-light);
  }

  .delete-zone {
    bottom: 80px;
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    padding: 12px;
  }

  .tab {
    padding: 8px 10px;
    font-size: 14px;
  }
}
.theme-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.theme-option {
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
}

.theme-option:hover {
  transform: translateY(-3px);
}

.theme-option.active {
  border-color: var(--accent-color);
}

.theme-preview {
  height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-preview-card {
  width: 80%;
  height: 50px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.theme-preview-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
}

.theme-name {
  padding: 8px;
  text-align: center;
  font-size: 14px;
  background-color: rgba(0,0,0,0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.light-mode .theme-name {
  background-color: rgba(0,0,0,0.05);
}

.light-mode .theme-option.active {
  box-shadow: 0 0 0 2px var(--accent-color);
}
.theme-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.theme-option {
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
}

.theme-option:hover {
  transform: translateY(-3px);
}

.theme-option.active {
  border-color: var(--accent-color);
}

.theme-preview {
  height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-preview-card {
  width: 80%;
  height: 50px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.theme-preview-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
}

.theme-name {
  padding: 8px;
  text-align: center;
  font-size: 14px;
  background-color: rgba(0,0,0,0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.light-mode .theme-name {
  background-color: rgba(0,0,0,0.05);
}

.light-mode .theme-option.active {
  box-shadow: 0 0 0 2px var(--accent-color);
}
.theme-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.theme-option {
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
}

.theme-option:hover {
  transform: translateY(-3px);
}

.theme-option.active {
  border-color: var(--accent-color);
}

.theme-preview {
  height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-preview-card {
  width: 80%;
  height: 50px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.theme-preview-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
}

.theme-name {
  padding: 8px;
  text-align: center;
  font-size: 14px;
  background-color: rgba(0,0,0,0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.light-mode .theme-name {
  background-color: rgba(0,0,0,0.05);
}

.light-mode .theme-option.active {
  box-shadow: 0 0 0 2px var(--accent-color);
}
/* Cyberpunk Theme Additional CSS */
body[data-theme='cyberpunk'] {
  background-image: linear-gradient(to bottom, rgba(10, 10, 18, 0.97), rgba(10, 10, 18, 0.95)),
                    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231f2838' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body[data-theme='cyberpunk'] .grid-container {
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
  border: 1px solid rgba(0, 243, 255, 0.1);
  background-color: rgba(18, 18, 30, 0.8);
  backdrop-filter: blur(10px);
}

body[data-theme='cyberpunk'] .grid-item {
  background-color: rgba(25, 25, 38, 0.6);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.15);
  border: 1px solid rgba(0, 243, 255, 0.08);
  transition: all 0.3s ease;
}

body[data-theme='cyberpunk'] .grid-item:hover {
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
  transform: translateY(-3px);
  background-color: rgba(28, 28, 45, 0.8);
}

body[data-theme='cyberpunk'] .bookmark-icon {
  filter: drop-shadow(0 0 3px rgba(0, 243, 255, 0.4));
}

body[data-theme='cyberpunk'] .search-input {
  border: 1px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 0 5px rgba(0, 243, 255, 0.1);
  background-color: rgba(15, 15, 25, 0.7);
}

body[data-theme='cyberpunk'] .search-input:focus {
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
  background-color: rgba(20, 20, 30, 0.9);
}

body[data-theme='cyberpunk'] .tabs-container {
  background-color: rgba(15, 15, 25, 0.5);
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

body[data-theme='cyberpunk'] .tab {
  border-right: 1px solid rgba(0, 243, 255, 0.1);
}

body[data-theme='cyberpunk'] .tab.active {
  background-color: rgba(24, 24, 44, 0.8);
  border-bottom: 2px solid #ff00aa;
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.2);
}

body[data-theme='cyberpunk'] .tab:hover:not(.active) {
  background-color: rgba(0, 243, 255, 0.05);
}

body[data-theme='cyberpunk'] .add-tab {
  background: linear-gradient(45deg, #ff00aa, #00f3ff);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

body[data-theme='cyberpunk'] .add-tab:hover {
  background: linear-gradient(45deg, #ff33bb, #33f6ff);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.7);
}

body[data-theme='cyberpunk'] .btn-primary {
  background: linear-gradient(45deg, #00f3ff, #0094c6);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

body[data-theme='cyberpunk'] .btn-primary:hover {
  background: linear-gradient(45deg, #33f6ff, #00aae2);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

body[data-theme='cyberpunk'] .btn-danger {
  background: linear-gradient(45deg, #ff3c5c, #ff005a);
  box-shadow: 0 0 10px rgba(255, 60, 92, 0.3);
}

body[data-theme='cyberpunk'] .btn-danger:hover {
  background: linear-gradient(45deg, #ff5c78, #ff3374);
  box-shadow: 0 0 15px rgba(255, 60, 92, 0.5);
}

body[data-theme='cyberpunk'] .empty-item {
  border: 1px dashed rgba(0, 243, 255, 0.3);
}

body[data-theme='cyberpunk'] .empty-item:hover {
  border: 1px dashed rgba(0, 243, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

/* Neon text effect for headings */
body[data-theme='cyberpunk'] h3, 
body[data-theme='cyberpunk'] .modal-title,
body[data-theme='cyberpunk'] .settings-title,
body[data-theme='cyberpunk'] .help-title {
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.7);
  color: #fff;
}

/* Modal styling */
body[data-theme='cyberpunk'] .modal-content,
body[data-theme='cyberpunk'] .help-content,
body[data-theme='cyberpunk'] .settings-content {
  background-color: rgba(18, 18, 30, 0.95);
  border: 1px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 5px 25px rgba(0, 243, 255, 0.15);
  backdrop-filter: blur(10px);
}

body[data-theme='cyberpunk'] .dropdown-menu {
  background-color: rgba(18, 18, 30, 0.95);
  border: 1px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

/* Form controls */
body[data-theme='cyberpunk'] .form-control {
  background-color: rgba(15, 15, 25, 0.7);
  border: 1px solid rgba(0, 243, 255, 0.2);
}

body[data-theme='cyberpunk'] .form-control:focus {
  border-color: #00f3ff;
  box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
}

body[data-theme='cyberpunk'] select.form-control {
  background-color: rgba(15, 15, 25, 0.7);
  color: #d1ecff;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2300f3ff' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
}

/* Animated glow effects */
@keyframes neonPulse {
  0% { box-shadow: 0 0 5px rgba(0, 243, 255, 0.2); }
  50% { box-shadow: 0 0 15px rgba(0, 243, 255, 0.5); }
  100% { box-shadow: 0 0 5px rgba(0, 243, 255, 0.2); }
}

@keyframes neonTextPulse {
  0% { text-shadow: 0 0 5px rgba(0, 243, 255, 0.5); }
  50% { text-shadow: 0 0 10px rgba(0, 243, 255, 0.8), 0 0 15px rgba(255, 0, 170, 0.5); }
  100% { text-shadow: 0 0 5px rgba(0, 243, 255, 0.5); }
}

body[data-theme='cyberpunk'] .action-button:hover {
  animation: neonPulse 2s infinite;
  background-color: rgba(0, 243, 255, 0.1);
}

body[data-theme='cyberpunk'] .modal-title,
body[data-theme='cyberpunk'] .settings-title,
body[data-theme='cyberpunk'] .help-title {
  animation: neonTextPulse 4s infinite;
}

/* Theme selection preview */
body[data-theme='cyberpunk'] .theme-option[data-theme='cyberpunk'] {
  animation: neonPulse 2s infinite;
}

/* Delete zone */
body[data-theme='cyberpunk'] .delete-zone {
  background-color: rgba(255, 60, 92, 0.1);
  border: 2px dashed rgba(255, 60, 92, 0.5);
  box-shadow: 0 0 15px rgba(255, 60, 92, 0.2);
}

body[data-theme='cyberpunk'] .delete-zone.drag-over {
  background-color: rgba(255, 60, 92, 0.2);
  box-shadow: 0 0 25px rgba(255, 60, 92, 0.4);
}

/* Neon grid lines in the background */
body[data-theme='cyberpunk'] .container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

/* Menu and dropdown effects */
body[data-theme='cyberpunk'] .menu-list {
  background-color: rgba(18, 18, 30, 0.95);
  border: 1px solid rgba(0, 243, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

body[data-theme='cyberpunk'] .menu-item:hover {
  background-color: rgba(0, 243, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2) inset;
}

/* Custom scrollbar */
body[data-theme='cyberpunk'] ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body[data-theme='cyberpunk'] ::-webkit-scrollbar-track {
  background: rgba(15, 15, 25, 0.5);
}

body[data-theme='cyberpunk'] ::-webkit-scrollbar-thumb {
  background: rgba(0, 243, 255, 0.5);
  border-radius: 4px;
}

body[data-theme='cyberpunk'] ::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 243, 255, 0.7);
}

/* Synthwave Theme Additional CSS */
body[data-theme='synthwave'] {
  background-color: var(--background-dark);
  background-image: 
    linear-gradient(0deg, rgba(26, 26, 46, 0.9) 0%, rgba(36, 27, 47, 0.9) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%235d38a3' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Synthwave sun/horizon effect */
body[data-theme='synthwave']::before {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45vh;
  background: linear-gradient(0deg, rgba(255, 42, 109, 0.15) 0%, rgba(36, 27, 47, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

body[data-theme='synthwave'] .grid-container {
  background-color: rgba(36, 27, 47, 0.85);
  box-shadow: 0 10px 30px rgba(255, 42, 109, 0.15);
  border: 1px solid rgba(255, 42, 109, 0.1);
  backdrop-filter: blur(5px);
}

body[data-theme='synthwave'] .grid-item {
  background-color: rgba(46, 33, 87, 0.5);
  border: 1px solid rgba(255, 42, 109, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body[data-theme='synthwave'] .grid-item:hover {
  background-color: rgba(52, 28, 92, 0.6);
  box-shadow: 0 8px 20px rgba(255, 42, 109, 0.2);
  transform: translateY(-3px);
}

body[data-theme='synthwave'] .bookmark-name {
  text-shadow: 0 0 5px rgba(255, 42, 109, 0.2);
}

body[data-theme='synthwave'] .tabs-container {
  background-color: rgba(26, 26, 46, 0.7);
  border-bottom: 1px solid rgba(255, 42, 109, 0.1);
}

body[data-theme='synthwave'] .tab.active {
  background-color: rgba(46, 33, 87, 0.7);
  border-bottom: 2px solid var(--primary-color);
}

body[data-theme='synthwave'] .add-tab {
  background: linear-gradient(45deg, #ff2a6d, #ae2cff);
}

body[data-theme='synthwave'] .add-tab:hover {
  background: linear-gradient(45deg, #ff5a8d, #c45aff);
}

body[data-theme='synthwave'] .search-input {
  background-color: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(255, 42, 109, 0.2);
}

body[data-theme='synthwave'] .search-input:focus {
  background-color: rgba(36, 27, 47, 0.7);
  box-shadow: 0 0 0 2px rgba(255, 42, 109, 0.2);
}

body[data-theme='synthwave'] .btn-primary {
  background: linear-gradient(45deg, #ff2a6d, #ae2cff);
  box-shadow: 0 5px 15px rgba(255, 42, 109, 0.2);
}

body[data-theme='synthwave'] .btn-primary:hover {
  background: linear-gradient(45deg, #ff5a8d, #c45aff);
  box-shadow: 0 5px 15px rgba(255, 42, 109, 0.4);
}

body[data-theme='synthwave'] .action-button:hover {
  background-color: rgba(255, 42, 109, 0.1);
}

body[data-theme='synthwave'] .modal-content,
body[data-theme='synthwave'] .help-content,
body[data-theme='synthwave'] .settings-content {
  background-color: rgba(36, 27, 47, 0.95);
  border: 1px solid rgba(255, 42, 109, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body[data-theme='synthwave'] h3, 
body[data-theme='synthwave'] .modal-title,
body[data-theme='synthwave'] .settings-title,
body[data-theme='synthwave'] .help-title {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
}

body[data-theme='synthwave'] .form-control {
  background-color: rgba(26, 26, 46, 0.7);
  border: 1px solid rgba(255, 42, 109, 0.2);
}

body[data-theme='synthwave'] .form-control:focus {
  border-color: var(--primary-color);
  background-color: rgba(36, 27, 47, 0.8);
}

body[data-theme='synthwave'] select.form-control {
  background-color: rgba(26, 26, 46, 0.7);
  color: var(--text-dark);
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23ff2a6d' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
}

body[data-theme='synthwave'] .empty-item {
  border: 1px dashed rgba(255, 42, 109, 0.3);
}

body[data-theme='synthwave'] .empty-item:hover {
  border: 1px dashed rgba(255, 42, 109, 0.8);
}

/* Grid lines effect */
body[data-theme='synthwave']::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background-image: 
    linear-gradient(0deg, rgba(255, 42, 109, 0.1) 0%, rgba(255, 42, 109, 0) 100%),
    linear-gradient(90deg, rgba(255, 42, 109, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 42, 109, 0.03) 1px, transparent 1px);
  background-size: 100%, 30px 30px, 30px 30px;
  background-position: 0 0, 0 0, 0 0;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  pointer-events: none;
  z-index: -1;
}

/* Scrollbar styling */
body[data-theme='synthwave'] ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body[data-theme='synthwave'] ::-webkit-scrollbar-track {
  background: rgba(26, 26, 46, 0.5);
}

body[data-theme='synthwave'] ::-webkit-scrollbar-thumb {
  background: rgba(255, 42, 109, 0.5);
  border-radius: 4px;
}

body[data-theme='synthwave'] ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 42, 109, 0.7);
}

/* Delete zone */
body[data-theme='synthwave'] .delete-zone {
  background-color: rgba(255, 42, 109, 0.1);
  border: 2px dashed rgba(255, 42, 109, 0.5);
}

body[data-theme='synthwave'] .delete-zone.drag-over {
  background-color: rgba(255, 42, 109, 0.2);
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
}

/* Menu items */
body[data-theme='synthwave'] .menu-list,
body[data-theme='synthwave'] .dropdown-menu {
  background-color: rgba(36, 27, 47, 0.95);
  border: 1px solid rgba(255, 42, 109, 0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

body[data-theme='synthwave'] .menu-item:hover,
body[data-theme='synthwave'] .dropdown-item:hover {
  background-color: rgba(255, 42, 109, 0.1);
}

/* Olympic Theme Additional CSS */
body[data-theme='olympic'] {
  background-color: var(--background-dark);
  background-image: 
    linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)),
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414l7.293-7.293z' fill='%230081c8' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  color: var(--text-dark);
}

/* Olympic Rings Pseudo Element */
body[data-theme='olympic']::before {
  content: '';
  position: fixed;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40'%3E%3Cg fill='none' stroke-width='4'%3E%3Ccircle cx='20' cy='20' r='15' stroke='%230081c8'/%3E%3Ccircle cx='42.5' cy='20' r='15' stroke='%23000000'/%3E%3Ccircle cx='65' cy='20' r='15' stroke='%23ee334e'/%3E%3Ccircle cx='87.5' cy='20' r='15' stroke='%23fcb131'/%3E%3Ccircle cx='110' cy='20' r='15' stroke='%2300a651'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

body[data-theme='olympic'] .grid-container {
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: none;
}

body[data-theme='olympic'] .grid-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: none;
  transition: all 0.3s ease;
}

body[data-theme='olympic'] .grid-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Colorful border effect on grid items using the Olympic colors */
body[data-theme='olympic'] .grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    #0081c8 0%, 
    #0081c8 20%, 
    #000000 20%, 
    #000000 40%, 
    #ee334e 40%, 
    #ee334e 60%, 
    #fcb131 60%, 
    #fcb131 80%, 
    #00a651 80%, 
    #00a651 100%);
  border-radius: 10px 10px 0 0;
  opacity: 0.7;
}

/* Style the tabs with Olympic colors */
body[data-theme='olympic'] .tabs-container {
  background-color: transparent;
  border-bottom: none;
  padding: 0 10px;
}

body[data-theme='olympic'] .tab {
  border-radius: 10px 10px 0 0;
  border: none;
  background-color: rgba(0, 0, 0, 0.03);
  color: #555;
  font-weight: 500;
  margin-right: 4px;
  position: relative;
  overflow: hidden;
}

body[data-theme='olympic'] .tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    #0081c8 0%, 
    #0081c8 20%, 
    #000000 20%, 
    #000000 40%, 
    #ee334e 40%, 
    #ee334e 60%, 
    #fcb131 60%, 
    #fcb131 80%, 
    #00a651 80%, 
    #00a651 100%);
  opacity: 0.4;
  transition: opacity 0.3s;
}

body[data-theme='olympic'] .tab:hover::before {
  opacity: 0.8;
}

body[data-theme='olympic'] .tab.active {
  background-color: white;
  color: #333;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

body[data-theme='olympic'] .tab.active::before {
  opacity: 1;
}

/* Style the add tab button */
body[data-theme='olympic'] .add-tab {
  background: var(--accent-color);
  border-radius: 10px 10px 0 0;
  color: white;
  box-shadow: 0 4px 10px rgba(252, 177, 49, 0.3);
}

body[data-theme='olympic'] .add-tab:hover {
  background: #fdbe4e;
  box-shadow: 0 4px 15px rgba(252, 177, 49, 0.4);
}

/* Search Input Styling */
body[data-theme='olympic'] .search-input {
  background-color: white;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #333;
}

body[data-theme='olympic'] .search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 129, 200, 0.15);
}

/* Buttons with Olympic colors */
body[data-theme='olympic'] .btn-primary {
  background-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 129, 200, 0.2);
}

body[data-theme='olympic'] .btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 15px rgba(0, 129, 200, 0.3);
}

body[data-theme='olympic'] .btn-danger {
  background-color: var(--danger-color);
  box-shadow: 0 4px 10px rgba(238, 51, 78, 0.2);
}

body[data-theme='olympic'] .btn-danger:hover {
  background-color: #ff4561;
  box-shadow: 0 4px 15px rgba(238, 51, 78, 0.3);
}

body[data-theme='olympic'] .btn-outline {
  border: 1px solid #ddd;
  color: #555;
}

body[data-theme='olympic'] .btn-outline:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

/* Empty bookmarks */
body[data-theme='olympic'] .empty-item {
  border: 2px dashed #e0e0e0;
  background-color: rgba(245, 245, 245, 0.5);
}

body[data-theme='olympic'] .empty-item:hover {
  border-color: var(--primary-color);
  background-color: rgba(0, 129, 200, 0.05);
}

/* Modal styling */
body[data-theme='olympic'] .modal-content,
body[data-theme='olympic'] .help-content,
body[data-theme='olympic'] .settings-content {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: none;
}

body[data-theme='olympic'] .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

body[data-theme='olympic'] .modal-title,
body[data-theme='olympic'] .settings-title,
body[data-theme='olympic'] .help-title {
  color: #333;
  font-weight: 700;
}

body[data-theme='olympic'] .form-control {
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  border-radius: 8px;
}

body[data-theme='olympic'] .form-control:focus {
  background-color: white;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 129, 200, 0.1);
}

/* Bookmark icons with subtle shadow */
body[data-theme='olympic'] .bookmark-icon {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar */
body[data-theme='olympic'] ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body[data-theme='olympic'] ::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 5px;
}

body[data-theme='olympic'] ::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 5px;
}

body[data-theme='olympic'] ::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

/* Delete zone */
body[data-theme='olympic'] .delete-zone {
  background-color: rgba(238, 51, 78, 0.05);
  border: 2px dashed rgba(238, 51, 78, 0.5);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(238, 51, 78, 0.1);
}

body[data-theme='olympic'] .delete-zone.drag-over {
  background-color: rgba(238, 51, 78, 0.1);
  box-shadow: 0 5px 20px rgba(238, 51, 78, 0.2);
}

/* Dropdown menus */
body[data-theme='olympic'] .dropdown-menu,
body[data-theme='olympic'] .menu-list {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 8px 0;
}

body[data-theme='olympic'] .dropdown-item:hover,
body[data-theme='olympic'] .menu-item:hover {
  background-color: #f5f5f5;
}

/* Setting sections */
body[data-theme='olympic'] .settings-section {
  border-top: 1px solid #f0f0f0;
}

/* Olympic themed toggle buttons */
body[data-theme='olympic'] input[type="checkbox"] {
  accent-color: var(--primary-color);
}

/* Action buttons with subtle hover effect */
body[data-theme='olympic'] .action-button {
  color: #777;
}

body[data-theme='olympic'] .action-button:hover {
  background-color: #f0f0f0;
  color: #333;
}