/*
================================================================================
TRANSPARENT THEME - GLASSMORPHISM
================================================================================

Theme Inspiration & Credits:
  • Glassmorphism design trend (modern interpretation of macOS Big Sur)
  • Backdrop filter effects and frosted glass aesthetics
  • Contemporary UI design with transparency and blur effects

This theme implements glassmorphism with backdrop-filter blur effects,
semi-transparent backgrounds, and modern gradient overlays for a sleek,
contemporary appearance.

================================================================================
*/

/* Transparent Theme - Glassmorphism */

.transparent-button {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: all 300ms ease;
}

.transparent-button:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

.transparent-button:active {
  background: rgba(255, 255, 255, 0.2);
}

.transparent-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.transparent-checkbox-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.transparent-checkbox {
  width: 20px;
  height: 20px;
  accent-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 4px;
}

.transparent-checkbox-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  user-select: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.transparent-radio-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.transparent-radio {
  width: 20px;
  height: 20px;
  accent-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.transparent-radio-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  user-select: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.transparent-groupbox {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
}

.transparent-groupbox-legend {
  margin-left: -16px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.transparent-textbox-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.transparent-textbox-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.transparent-textbox {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  transition: all 300ms ease;
}

.transparent-textbox::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.transparent-textbox:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.transparent-textbox:disabled {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.transparent-dropdown {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  cursor: pointer;
  transition: all 300ms ease;
}

.transparent-dropdown:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.transparent-dropdown:disabled {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.transparent-slider-container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.transparent-slider {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  border-radius: 5px;
}

.transparent-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.transparent-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.transparent-window {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  overflow: hidden;
}

.transparent-title-bar {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.transparent-title-bar-text {
  font-weight: 600;
  font-size: 14px;
  user-select: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.transparent-window-body {
  padding: 16px;
}
