/* Pell Minimal CSS */
.pell {
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 5px;
    box-sizing: border-box;
}

.pell-actionbar {
    background-color: #FFF;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}

.pell-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 30px;
    margin-right: 5px;
    outline: 0;
    width: 30px;
    border-radius: 3px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pell-button:hover {
    background-color: rgba(10, 10, 10, 0.1);
}

.pell-button-selected {
    background-color: rgba(10, 10, 10, 0.2);
}

.pell-content {
    box-sizing: border-box;
    height: 300px;
    outline: 0;
    overflow-y: auto;
    padding: 10px;
    background-color: #fff;
    color: #333;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.pell-content:focus {
    box-shadow: 0 0 3px rgba(0, 0, 150, 0.3);
}

.pell-content ul, .pell-content ol {
    padding-left: 30px;
}

.pell-content blockquote {
    border-left: 3px solid #ddd;
    margin: 10px 0;
    padding-left: 15px;
    color: #666;
}

.pell-content hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}