.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.passwords {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.password {
    padding: 20px;
    border: 2px solid #333;
    border-radius: 10px;
}

.code {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.digit {
    width: 30px;
    height: 30px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.digit.match {
    color: red;
}

.guess-section {
    margin: 30px 0;
}

#guess-input {
    padding: 10px;
    font-size: 18px;
    width: 150px;
    text-align: center;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.hidden {
    display: none;
}

.final-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 200px;
    margin: 0 auto;
}

.final-inputs input {
    padding: 10px;
    font-size: 16px;
    text-align: center;
}

.notes-section {
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid #ccc;
}

.notes-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
}
#notes-area {
    width: 100%;
    max-width: 600px;
    height: 150px;
    padding: 10px;
    margin-top: 10px;
    resize: vertical;
    font-family: inherit;
    position: relative;
}
