.add-editor-button {
    width: 3rem;
    height: 3rem;
    background-color: white;
    border: 1px solid darkgray;
    border-radius: 5% 5% 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    margin: 0em auto;
    transition: background-color 0.2s ease;
}

.add-editor-button:hover {
    background-color: #f0f0f0;
}