body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a2e;
    color: #fff;
    margin: 0;
}

.container {
    text-align: center;
    background: #162447;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    width: 300px;
}

input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

button {
    background: #00adb5;
    border: none;
    padding: 10px 20px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 4px;
    color: white;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #007b7e;
}

#lengthDisplay {
    font-size: 18px;
    margin-left: 10px;
}

#passwordsContainer {
    margin-top: 20px;
}

.password-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
    background: #e43f5a;
    padding: 5px;
    border-radius: 4px;
}

.password-row p {
    margin: 0;
    font-size: 18px;
    word-break: break-all;
    user-select: all;
}

.password-row button {
    background: #00adb5;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    color: white;
    margin-left: 10px;
}

.password-row button:hover {
    background-color: #007b7e;
}

.password-row.copied p {
    text-decoration: line-through;
    color: gray;
}
