/* =========================================
   RANDOM PASSWORD GENERATOR STYLES
========================================= */

.calc-section h3 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #334155;
    font-size: 0.95rem;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.checkbox-row {
    margin-bottom: 8px;
}

.checkbox-row input[type="checkbox"] {
    margin-right: 6px;
}

.password-result-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.password-text {
    word-break: break-all;
    font-family: monospace;
    font-size: 0.98rem;
}

.copy-btn {
    background: #0f766e;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #115e59;
}

button {
    background: #1d4ed8;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 10px;
}

button:hover {
    background: #1e40af;
}

.result-box {
    background: #f1f5f9;
    padding: 14px;
    border-radius: 8px;
    margin-top: 10px;
}
