/**
 * NextGenBlock - Editor.js Tool Styles
 */

.nextgenblock-wrapper {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    background: #fafafa;
    margin: 10px 0;
}

.nextgenblock-grid {
    display: grid;
    gap: 16px;
    min-height: 100px;
}

.nextgenblock-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #999;
    font-style: italic;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 8px;
}

.nextgenblock-card {
    position: relative;
    background: white;
    border: 2px solid #222;
    border-radius: 6px;
    overflow: hidden;
}

.nextgenblock-card-image {
    height: 120px;
    background-color: #f0f0f0;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 2px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nextgenblock-card-image-empty {
    color: #ccc;
}

.nextgenblock-card-image-empty svg {
    width: 48px;
    height: 48px;
    stroke: #ccc;
}

.nextgenblock-card-content {
    padding: 12px;
}

.nextgenblock-card-title {
    font-weight: 600;
    font-size: 14px;
    color: #222;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nextgenblock-card-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}
