/* Memorable Password Generator Styles */
.memorable-password-generator .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.password-generator-container {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.input-settings {
    margin-bottom: 20px;
}

.input-settings label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--primary-color);
}

.input-settings input[type="text"],
.input-settings input[type="range"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-settings input[type="text"]:focus,
.input-settings input[type="range"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

#lengthValue {
    font-size: 1rem;
    color: var(--primary-color);
    margin-left: 10px;
}

.generator-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.generator-toolbar button {
    padding: 10px 15px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.generator-toolbar button:hover {
    background-color: var(--primary-hover-color);
}

.password-output-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.password-output-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.output-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.output-actions i {
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 10px;
    color: #666;
    transition: color 0.3s ease;
}

.output-actions i:hover {
    color: var(--primary-color);
}

.output-content {
    font-size: 1.1rem;
    text-align: center;
    padding: 10px;
    border: 1px dashed #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Tool Introduction Section Styles */
.tool-intro {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.tool-intro .intro-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tool-intro .intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.tool-intro .intro-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.tool-intro .intro-list li {
    margin-bottom: 10px;
    color: #555;
}

.tool-intro .intro-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.tool-intro .intro-list li strong {
    color: var(--primary-hover-color);
    font-weight: bold;
}
/* Password Strength Indicator Styles */
.password-strength {
    margin-top: 15px;
    font-size: 1rem;
    text-align: center;
}

#strengthLabel {
    font-weight: bold;
    color: var(--primary-color);
}

#strengthValue {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
}

/* Strength Colors */
.easy {
    background-color: #dc3545; /* Red */
}

.medium {
    background-color: #ffc107; /* Yellow */
}

.hard {
    background-color: #17a2b8; /* Teal */
}

.very-hard {
    background-color: #28a745; /* Green */
}

