/* ======================
   RESET & BASE STYLES
   ====================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.tool-container {
	max-width: 800px;
	margin: 2rem auto;
	padding: 2rem;
}

.tool-description {
	color: #666;
	margin-bottom: 2rem;
}

.generator-section {
	margin-bottom: 4rem;
	padding: 2rem;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}
.password-display {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

.password-display input {
	flex: 1;
	padding: 1rem;
	font-size: 1.2rem;
	border: 2px solid #ddd;
	border-radius: 4px;
	font-family: monospace;
}

.icon-btn {
	background: none;
	border: none;
	color: #007bff;
	cursor: pointer;
	font-size: 1.2rem;
	padding: 0.5rem;
	transition: color 0.3s;
}

.icon-btn:hover {
	color: #0056b3;
}

.options {
	margin-bottom: 2rem;
}

.length-option {
	margin-bottom: 1.5rem;
}

.length-option label {
	display: block;
	margin-bottom: 0.5rem;
}

.length-option input[type="range"] {
	width: 100%;
}

.checkbox-options {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.checkbox-options label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.btn {
	width: 100%;
	padding: 1rem;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s;
}

.btn:hover {
	background: #0056b3;
}

.password-strength {
	margin-top: 1.5rem;
}

.strength-meter {
	height: 8px;
	background: #eee;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.strength-bar {
	height: 100%;
	width: 0;
	background: #dc3545;
	transition: all 0.3s;
}

.strength-bar.weak { width: 25%; background: #dc3545; }
.strength-bar.medium { width: 50%; background: #ffc107; }
.strength-bar.strong { width: 75%; background: #28a745; }
.strength-bar.very-strong { width: 100%; background: #198754; }

.strength-text {
	color: #666;
	font-size: 0.9rem;
}

.tips-section {
	margin-top: 2rem;
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
}

.tips-section ul {
	list-style-type: none;
	padding-left: 0;
}

.tips-section li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.tips-section li:before {
	content: "•";
	position: absolute;
	left: 0.5rem;
	color: #007bff;
}