:root {
    --bg-gradient: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e, #0f3460);
    --card-bg: rgba(0, 255, 0, 0.03);
    --card-border: rgba(0, 255, 0, 0.2);
    --text-color: #00ff00;
    --text-secondary: #00cc00;
    --input-bg: rgba(0, 0, 0, 0.4);
    --input-border: rgba(0, 255, 0, 0.3);
    --button-bg: linear-gradient(45deg, #00ff00, #00cc00);
    --button-hover: linear-gradient(45deg, #00cc00, #009900);
    --glow-color: #00ff00;
    --shadow-color: rgba(0, 255, 0, 0.3);
  }
  
  * {
    box-sizing: border-box;
  }
  
  body { 
    font-family: 'Courier New', 'Monaco', monospace; 
    background: var(--bg-gradient); 
    color: var(--text-color); 
    margin: 0; 
    padding: 20px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.6;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
  }
  
  .container { 
    max-width: 1200px; 
    margin: auto; 
    padding: 20px;
    position: relative;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 3rem;
    text-shadow: 0 0 20px var(--glow-color);
    background: linear-gradient(45deg, #00ff00, #00cc00, #009900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  @keyframes glow {
    from { text-shadow: 0 0 20px var(--glow-color); }
    to { text-shadow: 0 0 30px var(--glow-color), 0 0 40px var(--glow-color); }
  }
  
  .theme-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 25px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    color: var(--text-color);
    font-family: inherit;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  
  .theme-btn:hover {
    background: var(--button-bg);
    color: #000;
    box-shadow: 0 0 20px var(--shadow-color);
    transform: translateY(-2px);
  }
  
  /* Tabs */
  .tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
  }
  
  .tab-btn {
    flex: 1 1 200px;
    margin: 5px;
    padding: 15px 20px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .tab-btn:hover::before {
    left: 100%;
  }
  
  .tab-btn.active, .tab-btn:hover {
    background: var(--button-bg);
    color: #000;
    box-shadow: 0 0 20px var(--shadow-color);
    transform: translateY(-3px);
  }
  
  /* Tabs content */
  .tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  .tab-content.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Card */
  .card.glass {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.5),
      0 0 0 1px var(--card-border),
      inset 0 1px 0 rgba(0, 255, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .card.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glow-color), transparent);
  }
  
  .card.glass:hover {
    transform: translateY(-8px);
    box-shadow: 
      0 15px 50px rgba(0, 0, 0, 0.7),
      0 0 30px var(--shadow-color),
      inset 0 1px 0 rgba(0, 255, 0, 0.2);
  }
  
  .card.glass h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--glow-color);
    border-bottom: 2px solid var(--card-border);
    padding-bottom: 10px;
  }
  
  /* Inputs & Buttons */
  input[type="text"], input[type="number"] {
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text-color);
    margin: 8px 0;
    width: 100%;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
  }
  
  input:focus {
    outline: none;
    border-color: var(--glow-color);
    box-shadow: 0 0 15px var(--shadow-color);
    background: rgba(0, 0, 0, 0.6);
  }
  
  input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
  }
  
  button.primary-btn {
    background: var(--button-bg);
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
  }
  
  button.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }
  
  button.primary-btn:hover::before {
    left: 100%;
  }
  
  button.primary-btn:hover {
    background: var(--button-hover);
    box-shadow: 0 0 25px var(--shadow-color);
    transform: translateY(-3px);
  }
  
  button.copy-btn {
    background: var(--card-bg);
    padding: 8px 15px;
    border-radius: 15px;
    border: 2px solid var(--card-border);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
  }
  
  button.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.3s ease;
  }
  
  button.copy-btn:hover::before {
    left: 100%;
  }
  
  button.copy-btn:hover {
    background: var(--button-bg);
    color: #000;
    box-shadow: 0 0 15px var(--shadow-color);
    transform: translateY(-2px);
  }
  
  /* Labels */
  label {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: var(--text-color);
    font-size: 1.1rem;
    gap: 10px;
  }
  
  label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--glow-color);
  }
  
  .inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  /* Result display */
  .result {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
    background: var(--input-bg);
    border-radius: 15px;
    border: 2px solid var(--card-border);
    backdrop-filter: blur(10px);
  }
  
  .result-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .result input[type="text"] {
    flex: 1;
    min-width: 200px;
    font-family: 'Courier New', monospace;
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  
  .result span.strength {
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 10px currentColor;
  }
  
  .result span.entropy {
    color: var(--text-secondary);
    font-size: 1.1rem;
  }
  
  /* Flash */
  @keyframes flash {
    0% { background-color: var(--input-bg); }
    50% { background-color: rgba(0, 255, 0, 0.2); }
    100% { background-color: var(--input-bg); }
  }
  
  .flash {
    animation: flash 0.5s;
  }
  
  /* Progress Bar */
  .progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    position: relative;
  }
  
  .progress-bar div {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .progress-bar div::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
  }
  
  @keyframes progressShine {
    0% { left: -100%; }
    100% { left: 100%; }
  }
  
  /* Toast */
  #toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 35px;
    border-radius: 25px;
    background: var(--button-bg);
    color: #000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    z-index: 1000;
    text-align: center;
    max-width: 90%;
    word-wrap: break-word;
  }
  
  .toast.success {
    background: linear-gradient(45deg, #44ff44, #00cc00);
  }
  
  .toast.error {
    background: linear-gradient(45deg, #ff4444, #cc0000);
  }
  
  .toast.info {
    background: linear-gradient(45deg, #00aaff, #0088cc);
  }
  
  /* Modal/Popup Styles */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 25px;
    max-width: 450px;
    width: 85%;
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.8),
      0 0 0 1px var(--card-border),
      inset 0 1px 0 rgba(0, 255, 0, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
  }
  
  .modal-overlay.active .modal {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--card-border);
    padding-bottom: 12px;
  }
  
  .modal-title {
    font-size: 1.6rem;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--glow-color);
    margin: 0;
  }
  
  .modal-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .modal-close:hover {
    background: var(--button-bg);
    color: #000;
    transform: rotate(90deg);
  }
  
  .history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    margin: 8px 0;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .history-item:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: var(--glow-color);
    transform: translateX(5px);
  }
  
  .history-password {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--text-color);
    flex: 1;
    margin-right: 15px;
    word-break: break-all;
  }
  
  .history-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
  }
  
  .history-strength {
    font-weight: bold;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 8px;
    text-transform: uppercase;
  }
  
  .history-strength.Weak { background: #ff4444; color: #000; }
  .history-strength.Medium { background: #ffaa00; color: #000; }
  .history-strength.Strong { background: #44ff44; color: #000; }
  .history-strength.Very Strong { background: #00aaff; color: #000; }
  
  .history-entropy {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .history-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
  }
  
  .history-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
  }
  
  .history-copy-btn {
    background: var(--button-bg);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .history-copy-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
  }
  
  .history-clear-btn {
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--card-border);
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .history-clear-btn:hover {
    background: #ff4444;
    color: #000;
    border-color: #ff4444;
  }
  
  .no-history {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 40px 20px;
  }
  
  /* Confirmation Modal Styles */
  .confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .confirm-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .confirm-modal {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    max-width: 380px;
    width: 85%;
    text-align: center;
    box-shadow: 
      0 25px 80px rgba(0, 0, 0, 0.9),
      0 0 0 1px var(--card-border),
      inset 0 1px 0 rgba(0, 255, 0, 0.1);
    backdrop-filter: blur(20px);
    transform: scale(0.8);
    transition: all 0.3s ease;
  }
  
  .confirm-overlay.active .confirm-modal {
    transform: scale(1);
  }
  
  .confirm-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
  }
  
  .confirm-title {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: bold;
    text-shadow: 0 0 10px var(--glow-color);
  }
  
  .confirm-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .confirm-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .confirm-btn {
    padding: 12px 25px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 100px;
  }
  
  .confirm-btn.danger {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: #000;
  }
  
  .confirm-btn.danger:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
  }
  
  .confirm-btn.cancel {
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--card-border);
  }
  
  .confirm-btn.cancel:hover {
    background: var(--button-bg);
    color: #000;
    border-color: var(--glow-color);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .tab-btn {
      flex: 1 1 45%;
      margin: 3px;
      padding: 12px 8px;
      font-size: 1rem;
    }
    
    .result-row {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
    
    .result input[type="text"] {
      min-width: auto;
      margin-bottom: 0;
      font-size: 1.1rem;
    }
    
    h1 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }
    
    .container {
      padding: 10px;
      max-width: 100%;
    }
    
    .card.glass {
      padding: 20px;
      margin: 15px 0;
    }
    
    .card.glass h2 {
      font-size: 1.3rem;
      margin-bottom: 20px;
    }
    
    .inputs {
      gap: 10px;
      margin-bottom: 15px;
    }
    
    label {
      font-size: 0.9rem;
      margin: 5px 0;
    }
    
    button.primary-btn {
      padding: 12px 20px;
      font-size: 0.9rem;
    }
    
    .result {
      padding: 15px;
      margin-top: 15px;
    }
    
    /* Modal responsive */
    .modal {
      width: 95%;
      padding: 20px;
      max-height: 85vh;
    }
    
    .history-item {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
    
    .history-password {
      margin-right: 0;
      margin-bottom: 10px;
      font-size: 0.9rem;
    }
    
    .history-info {
      align-items: stretch;
      flex-direction: row;
      justify-content: space-between;
    }
    
    .history-actions {
      flex-direction: column;
      gap: 8px;
    }
    
    /* Confirmation modal responsive */
    .confirm-modal {
      width: 95%;
      padding: 30px 20px;
      max-width: 350px;
    }
    
    .confirm-icon {
      font-size: 2.5rem;
    }
    
    .confirm-title {
      font-size: 1.3rem;
    }
    
    .confirm-message {
      font-size: 1rem;
    }
    
    .confirm-actions {
      flex-direction: column;
      gap: 10px;
    }
    
    .confirm-btn {
      width: 100%;
      padding: 15px 20px;
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
    
    .container {
      padding: 8px;
    }
    
    .tab-btn {
      flex: 1 1 100%;
      margin: 2px 0;
      padding: 10px;
      font-size: 0.95rem;
    }
    
    .card.glass {
      padding: 15px;
      margin: 10px 0;
      border-radius: 15px;
    }
    
    .card.glass h2 {
      font-size: 1.4rem;
      margin-bottom: 15px;
    }
    
    input[type="text"], input[type="number"] {
      width: 100%;
      padding: 12px 15px;
      font-size: 1rem;
    }
    
    .theme-btn {
      top: 10px;
      right: 10px;
      padding: 8px 12px;
      font-size: 0.8rem;
    }
    
    .theme-btn:nth-of-type(2) {
      right: 80px;
    }
    
    .result {
      padding: 12px;
      margin-top: 12px;
    }
    
    button.primary-btn {
      padding: 10px 18px;
      font-size: 1rem;
      width: 100%;
    }
    
    button.copy-btn {
      padding: 6px 12px;
      font-size: 0.9rem;
    }
    
    .progress-bar {
      height: 8px;
      margin-top: 8px;
    }
    
    .strength, .entropy {
      font-size: 1rem;
    }
    
    /* Pro tip text */
    .container > div {
      font-size: 1rem;
      margin-bottom: 15px;
      padding: 0 10px;
    }
    
    /* Modal for mobile */
    .modal {
      width: 98%;
      padding: 15px;
      border-radius: 15px;
    }
    
    .modal-header {
      margin-bottom: 15px;
      padding-bottom: 10px;
    }
    
    .modal-title {
      font-size: 1.5rem;
    }
    
    .modal-close {
      width: 35px;
      height: 35px;
      font-size: 1.2rem;
    }
    
    .history-item {
      padding: 12px;
      margin: 8px 0;
    }
    
    .history-password {
      font-size: 1rem;
    }
    
    .history-strength {
      font-size: 0.9rem;
      padding: 3px 6px;
    }
    
    .history-entropy, .history-time {
      font-size: 0.85rem;
    }
    
    /* Confirmation modal mobile */
    .confirm-modal {
      width: 98%;
      padding: 25px 15px;
      max-width: 320px;
    }
    
    .confirm-icon {
      font-size: 2.2rem;
      margin-bottom: 15px;
    }
    
    .confirm-title {
      font-size: 1.4rem;
      margin-bottom: 12px;
    }
    
    .confirm-message {
      font-size: 1.1rem;
      margin-bottom: 25px;
    }
    
    .confirm-btn {
      padding: 12px 18px;
      font-size: 1.1rem;
    }
    
    /* Toast mobile */
    #toast {
      font-size: 1.1rem;
      padding: 15px 25px;
      max-width: 95%;
      bottom: 20px;
    }
  }
  
  /* Landscape mobile optimization */
  @media (max-width: 768px) and (orientation: landscape) {
    .container {
      padding: 5px;
    }
    
    h1 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    
    .card.glass {
      padding: 15px;
      margin: 8px 0;
    }
    
    .tab-btn {
      padding: 8px 4px;
      font-size: 0.8rem;
    }
    
    .result {
      padding: 10px;
    }
    
    .modal {
      max-height: 90vh;
      padding: 15px;
    }
  }
  
  /* Light theme overrides */
  body.light-theme {
    --bg-gradient: linear-gradient(135deg, #f0f0f0, #e0e0e0, #d0d0d0);
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 0, 0, 0.3);
    --text-color: #000;
    --text-secondary: #444;
    --input-bg: rgba(255, 255, 255, 0.95);
    --input-border: rgba(0, 0, 0, 0.4);
    --button-bg: linear-gradient(45deg, #007acc, #005999);
    --button-hover: linear-gradient(45deg, #005999, #004080);
    --glow-color: #007acc;
    --shadow-color: rgba(0, 122, 204, 0.4);
  }
  
  body.light-theme h1 {
    background: linear-gradient(45deg, #007acc, #005999, #004080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
  }
  
  body.light-theme .card.glass::before {
    background: linear-gradient(90deg, transparent, var(--glow-color), transparent);
  }
  
  body.light-theme .modal-title,
  body.light-theme .confirm-title {
    color: var(--text-color);
    text-shadow: none;
  }
  
  body.light-theme .history-password,
  body.light-theme .confirm-message {
    color: var(--text-color);
  }
  
  body.light-theme .history-entropy,
  body.light-theme .history-time,
  body.light-theme .confirm-message {
    color: var(--text-secondary);
  }
  
