#notepadPage textarea {
    width: 100%;
    height: 5000px;

    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: none;
    outline: none;
    color: white;
    font-family: Arial;
    font-size: 17px;
    padding: 10px;
    resize: none;
    caret-color: white;
    transition: 0.5s;

    overflow-x: hidden;
}
#browserPage iframe {
    position: absolute;
    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    border: none;
}
#browserPage .browserOptions {
    z-index: 100;

    position: absolute;
    right: 0px;
    top: 0px;

    width: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#browserPage .browserOptions button {
    width: 20px;
    aspect-ratio: 1.0;

    font-family: Arial;
    color: white;
    background: #252525;
    border: none;
    border-radius: 0px;
    opacity: 0.25;

    display: flex;
    justify-content: center;
    align-items: center;
}
#browserPage .browserOptions button:hover {
    opacity: 1.0;
}

/* CHARACTERS LIST */
#plusPanel .charactersList {
    width: 390px;

    margin: 0px 5px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
#plusPanel .charactersList button {
    width: 48.75px;
    height: 48.75px;

    background: var(--bg-color-2);
    color: var(--color);
    font-family: Arial;
    font-size: 30px;
    border: none;
    cursor: pointer;
    transition: 0.2s var(--trans-smooth);

    display: flex;
    justify-content: center;
    align-items: center;
}
#plusPanel .charactersList button:hover {
    filter: brightness(1.5);
    font-size: 35px;
}
#plusPanel .charactersList button:disabled::after {
    content: "🔒";
    margin-left: 1px;
    font-size: 15px;
}