.container-password-generator {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #fffaf0 0%, #fffaf0 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* Responsive Design */
}
.container-password-generator .containerr {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.container-password-generator h1 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-weight: 700;
}
.container-password-generator .subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.5;
}
.container-password-generator .password-display {
  background: #fffdfa;
  border: 2px solid #f7f4f0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
}
.container-password-generator .password-text {
  flex: 1;
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  color: #333;
  word-break: break-all;
  line-height: 1.4;
}
.container-password-generator .strength-indicator {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.container-password-generator .very-weak {
  background: #ffebee;
  color: #c62828;
}
.container-password-generator .weak {
  background: #fff3e0;
  color: #ef6c00;
}
.container-password-generator .good {
  background: #f3e5f5;
  color: #7b1fa2;
}
.container-password-generator .strong {
  background: #e8f5e8;
  color: #2e7d32;
}
.container-password-generator .very-strong {
  background: #e3f2fd;
  color: #1565c0;
}
.container-password-generator .action-buttons {
  display: flex;
  gap: 8px;
}
.container-password-generator .btn {
  background: #de9406;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
}
.container-password-generator .btn:hover {
  background: #de9406;
  transform: translateY(-2px);
}
.container-password-generator .length-section {
  margin-bottom: 25px;
}
.container-password-generator .length-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}
.container-password-generator .length-value {
  background: #de9406;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.container-password-generator .slider-container {
  position: relative;
  margin-bottom: 10px;
}
.container-password-generator .slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.container-password-generator .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #de9406;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.container-password-generator .slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #de9406;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.container-password-generator .slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.container-password-generator .slider-btn {
  background: #f5f3f1;
  border: 2px solid #eceae6;
  color: #de9406;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
}
.container-password-generator .slider-btn:hover {
  background: #de9406;
  color: white;
}
.container-password-generator .characters-section {
  margin-bottom: 25px;
}
.container-password-generator .section-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.container-password-generator .checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.container-password-generator .checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: #f5f3f0;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.container-password-generator .checkbox-item:hover {
  background: #e9ecef;
}
.container-password-generator .checkbox-item.checked {
  background: #fdf4e2;
  border-color: #de9406;
}
.container-password-generator .checkbox-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.container-password-generator .checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}
.container-password-generator .checkbox.checked {
  background: #de9406;
  border-color: #de9406;
}
.container-password-generator .checkbox.checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.container-password-generator .checkbox-label {
  font-family: "Courier New", monospace;
  font-weight: 600;
  color: #333;
}
.container-password-generator .options-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.container-password-generator .option-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8f7f4;
  border: 2px solid transparent;
}
.container-password-generator .option-item:hover {
  background: #fffaf0;
}
.container-password-generator .option-item.active {
  background: #fffaf0;
  border-color: #de9406;
}
.container-password-generator .option-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}
.container-password-generator .option-checkbox.checked {
  background: #de9406;
  border-color: #de9406;
}
.container-password-generator .option-checkbox.checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}
.container-password-generator .info-icon {
  width: 16px;
  height: 16px;
  background: #de9406;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  cursor: help;
  position: relative;
}
.container-password-generator .tooltip {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.container-password-generator .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}
.container-password-generator .info-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .container-password-generator .containerr {
    padding: 20px;
    margin: 10px;
  }
  .container-password-generator h1 {
    font-size: 1.8rem;
  }
  .container-password-generator .checkbox-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .container-password-generator .options-section {
    flex-direction: column;
    gap: 10px;
  }
  .container-password-generator .password-text {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .container-password-generator .containerr {
    padding: 15px;
  }
  .container-password-generator h1 {
    font-size: 1.6rem;
  }
  .container-password-generator .checkbox-group {
    grid-template-columns: 1fr;
  }
  .container-password-generator .slider-controls {
    gap: 10px;
  }
}