body {
    font-family: Arial, sans-serif;
    background-color: #0f0f0f;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    scrollbar-color: #0f0f0f #272727;
}

* {
    scrollbar-color: #1d1d1d #353535;
}

h1 {
    position: relative;
    padding: 10px;
}

p {
    margin: 4px;
}

.success-message {
    display: none;
    background: #16c60c;
    color: white;
    padding: 8px 33px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    z-index: 2;
}

form {
    background: #272727;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.fa {
    width: 93%;
    height: 10px;
    padding: 10px;
    border: 1px solid #272727;
    border-radius: 5px;
    resize: none;
    font-size: 16px;
    background-color: #404040;
    color: white;
    font-family: monospace;
}

img[src] {
    width: 300px;
    height: auto;
}

.captcha {
    border-radius: 10px;
    filter: invert(95%);
}

.pell-button-custom-name {
    width: 15%;
}

.pell-actionbar-custom-name {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.pell-content-custom-name {
    background-color: #404040;
    height: auto;
    padding: 10px;
    border: 1px solid #272727;
    border-radius: 5px;
    resize: none;
    color: white;
    width: 93%;
    position: relative;
    margin-top: 10px;
}

textarea {
    width: 93%;
    height: 100px;
    padding: 10px;
    border: 1px solid #272727;
    border-radius: 5px;
    resize: none;
    font-size: 16px;
    background-color: #404040;
    color: white;
}

#text_list {
    width: 100%;
    /* height: 100%; */
    /* max-height: calc(90vh - 160px); */
}

button {
    cursor: pointer;
    background: #404040;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
}

button:hover {
    background: #171717;
}

a {
    color: rgb(82, 158, 75);
    padding: 4px;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    color: rgb(58, 119, 53);
}

a.active {
    color: rgb(71, 255, 126);
    cursor: text;
}

/* editor */
.pell-content {
    background-color: pink;
}

.captcha {
    user-select: none;
    pointer-events: none;
}