/**
 * BizBooster Hub Frontend Styles
 */

/* Widget Styles */
.bizbooster-widget {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bizbooster-widget h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

/* Grid Layouts */
.bizbooster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.bizbooster-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bizbooster-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Business Cards */
.bizbooster-business-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fafafa;
    transition: background-color 0.2s ease;
}

.bizbooster-business-card:hover {
    background: #f0f0f0;
}

.bizbooster-business-card.bizbooster-featured {
    border-left: 4px solid #00a32a;
    background: #f0f9f0;
}

.bizbooster-business-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.bizbooster-business-info {
    flex: 1;
}

.bizbooster-business-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.bizbooster-business-info p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Category Tags */
.bizbooster-category-tag {
    display: inline-block;
    background: #007cba;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-top: 5px;
    text-transform: capitalize;
}

/* Buttons */
.bizbooster-button {
    display: inline-block;
    background: #007cba;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
    text-align: center;
}

.bizbooster-button:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

/* Business Tools Widget */
.bizbooster-business-tools {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.bizbooster-business-tools h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.bizbooster-business-tools .bizbooster-button {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.bizbooster-business-tools .bizbooster-button:hover {
    background: rgba(255,255,255,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bizbooster-grid {
        grid-template-columns: 1fr;
    }
    
    .bizbooster-business-card {
        flex-direction: column;
        text-align: center;
    }
    
    .bizbooster-business-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .bizbooster-widget {
        padding: 15px;
        margin: 15px 0;
    }
    
    .bizbooster-card {
        padding: 15px;
    }
    
    .bizbooster-business-card {
        padding: 15px;
    }
    
    .bizbooster-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}