/* テンプレートウィジェットのスタイル */
.template-widgets-area {
    width: 100%;
}

.template-widget {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.template-widget .widget-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    margin: 0;
}

.template-widget .widget-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.template-widget .widget-content {
    padding: 15px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .template-widget {
        margin-bottom: 15px;
    }
    
    .template-widget .widget-title {
        padding: 10px 12px;
    }
    
    .template-widget .widget-title h3 {
        font-size: 14px;
    }
    
    .template-widget .widget-content {
        padding: 12px;
    }
}
