
.pwg-container {
    max-width: 100%;
    margin: 40px 0;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    font-family: "Segoe UI", sans-serif;
}
.pwg-password-display {
    width: 100%;
    font-size: 18px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.pwg-label {
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
}
.pwg-slider-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
#pwg-length {
    width: 100%;
}
#pwg-length-display {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 15px;
}
.pwg-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.pwg-options label {
    flex: 1 1 45%;
    font-size: 15px;
}
#pwg-generate {
    background-color: #f16123;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease;
}
#pwg-generate:hover {
    background-color: #d6501b;
}
