 
        /* Result Area */
        .result-container {
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            position: relative;
            border: 1px solid var(--border-color);
        }
       .security-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
} 
        .result-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        .matrix-card {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgb(0 0 0 / 5%);
}.matrix-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}.matrix-content {
    font-size: 0.9rem;
    color: var(--text-muted);
}
        .result-content {
            font-family: 'Courier New', monospace;
            word-break: break-all;
            padding: 12px;
            background-color: white;
            border-radius: 4px;
            border: 1px solid #eee;
            font-size: 1.25rem;
            min-height: 60px;
            white-space: pre-wrap;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .copy-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 0.4rem 0.75rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background-color: var(--light-gray);
        }
        
        /* Content Sections */
        .section-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .usage-step {
            display: flex;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }
        
        .step-number {
            width: 28px;
            height: 28px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .info-box {
            background-color: rgba(44, 125, 160, 0.05);
            border-left: 3px solid var(--primary-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }

         
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .tool-container {
                flex-direction: column;
            }
            
            .tool-sidebar {
                width: 100%;
            }
        }
        
        /* Action buttons */
        .action-buttons {
            display: flex;
            gap: 0.75rem;
            justify-content: flex-end;
            margin-top: 1rem;
        }
        
        .action-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            background: white;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .action-btn:hover {
            background-color: var(--light-gray);
        }
        
        /* Password generator specific styles */
        .password-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .option-group {
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 1.25rem;
            border: 1px solid var(--border-color);
        }
        
        .option-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .option-item {
            margin-bottom: 1rem;
            <!-- display: flex; -->
            align-items: center;
        }
        
        .option-item label {
            margin-left: 0.75rem;
            cursor: pointer;
        }
        
        .length-control {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .length-value {
            min-width: 40px;
            text-align: center;
            font-weight: 600;
        }
        
        .count-control {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .count-value {
            min-width: 40px;
            text-align: center;
            font-weight: 600;
        }
        
        .strength-meter {
            height: 10px;
            background-color: #e9ecef;
            border-radius: 5px;
            margin-top: 1rem;
            overflow: hidden;
        }
        
        .strength-bar {
            height: 100%;
            width: 0%;
            transition: width 0.5s ease;
        }
        
        .strength-label {
            font-size: 0.9rem;
            margin-top: 0.5rem;
            font-weight: 500;
        }
        
        .password-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }
        
        .password-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .batch-results {
            margin-top: 1.5rem;
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 1rem;
            background-color: white;
        }
        
        .batch-result-item {
            font-family: 'Courier New', monospace;
            padding: 0.5rem;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .batch-result-item:last-child {
            border-bottom: none;
        }
        
        .download-btn {
            margin-top: 1rem;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        /* Password strength colors */
        .strength-weak {
            background-color: var(--danger-color);
        }
        
        .strength-medium {
            background-color: var(--warning-color);
        }
        
        .strength-strong {
            background-color: var(--success-color);
        }
        
        .strength-very-strong {
            background-color: var(--accent-color);
        }
        
        /* Password security tips */
        .security-tips {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .tip-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.25rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .tip-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .tip-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .tip-content {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        /* New layout improvements */
        .password-generator-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .password-controls {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .password-settings {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        
        .password-strength-container {
            background: linear-gradient(135deg, rgba(169, 214, 229, 0.1) 0%, rgba(44, 125, 160, 0.1) 100%);
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        
        .password-examples {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .example-card {
            background-color: white;
            border-radius: 8px;
            padding: 1rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .example-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .example-password {
            font-family: 'Courier New', monospace;
            font-weight: bold;
            letter-spacing: 1px;
            font-size: 0.9rem;
            color: var(--text-color);
        }
        
        .password-statistics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .stat-card {
            background-color: white;
            border-radius: 8px;
            padding: 1rem;
            border: 1px solid var(--border-color);
            text-align: center;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .password-complexity {
            margin: 1.5rem 0;
        }
        
        .complexity-bar {
            height: 8px;
            background-color: #e9ecef;
            border-radius: 4px;
            margin: 0.5rem 0;
            overflow: hidden;
        }
        
        .complexity-level {
            height: 100%;
            width: 0%;
            transition: width 0.5s ease;
        }
        
        .complexity-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        
        /* Password visualization */
        .password-visual {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: 1.5rem 0;
            gap: 10px;
        }
        
        .password-visual-item {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        
        .password-visual-item.uppercase {
            background-color: rgba(44, 125, 160, 0.2);
            color: var(--primary-color);
        }
        
        .password-visual-item.lowercase {
            background-color: rgba(169, 214, 229, 0.2);
            color: var(--accent-color);
        }
        
        .password-visual-item.number {
            background-color: rgba(40, 167, 69, 0.2);
            color: var(--success-color);
        }
        
        .password-visual-item.symbol {
            background-color: rgba(220, 53, 69, 0.2);
            color: var(--danger-color);
        }
        
        .password-visual-item.other {
            background-color: rgba(255, 193, 7, 0.2);
            color: var(--warning-color);
        }
        
        .password-visual-label {
            font-size: 0.75rem;
            text-align: center;
            margin-top: 5px;
            color: var(--text-muted);
        }
        
        .visual-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    