/* Tool Container Styles */
.tool-container {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.tool-title {
    font-weight: 700;
    color: #2d3748;
}

.tool-description {
    color: #718096;
}

/* Password Display */
.password-display .form-control {
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Password Options */
.password-options .card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.form-range::-webkit-slider-thumb {
    background: #4361ee;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-icon {
    font-size: 2rem;
    color: #4361ee;
    margin-bottom: 1rem;
}

/* Password Strength */
.password-strength .progress {
    height: 8px;
    border-radius: 4px;
}

.strength-text {
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tool-container {
        padding: 1.5rem;
    }
}

/* Footer Fix */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.tool-section {
    flex: 1 0 auto;
    padding: 3rem 0;
}

footer {
    margin-top: auto;
} 