.custom-text-editor-widget {
    position: relative;
    background: #F5F9FF;
    border-radius: 12px;
}

.custom-text-editor-content {
    margin-bottom: 20px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #4F4F4F;
    font-size: 16px;
    line-height: 1.6;
}

.custom-text-editor-content.collapsed {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.toggle-text-button {
    padding: 0px;
    background: none;
    border: none;
    color: #305CDE;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.toggle-text-button:hover {
    background: #305CDE;
    color: #ffffff;
    text-decoration: none;
}

.toggle-text-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(48, 92, 222, 0.3);
}