/* Password Generator Specific Styles */

body {
    padding-top: 60px;
    /* Ensure enough space for the fixed navbar */
}

#password {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    /* Optional: adds spacing between characters */
    word-break: break-all;
    /* Ensures long passwords break correctly */
}

.btn-theme {
    background-color: #2f0245;
    border-color: #2f0245;
    color: #fff;
}

.btn-theme:hover {
    background-color: #1e0141;
    border-color: #1e0141;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section {
    margin-top: 180px;
    margin-bottom: 180px;
    /* Adjust as needed to ensure content is visible */
}

/* New Styles for Information Section */
p {
    line-height: 1.6;
}