/* Components: Badges, Buttons, and UI Elements */

/* Category Badges */
.consultation-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    width: fit-content;
}

.consultation-category.category-building {
    background: #dff6ed;
    color: #009e61;
}

.consultation-category.category-services {
    background: #dff6ed;
    color: #009e61;
}

.consultation-category.category-project_management {
    background: #dff6ed;
    color: #009e61;
}

/* Status Badges */
.consultation-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.consultation-status.status-expired {
    background: #ffebee;
    color: #c62828;
}

.consultation-status.status-active {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Links & Buttons */
.consultation-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    background: #ffffff;
    color: var(--e-global-color-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.consultation-link:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Icon wrapper */
.consultation-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consultation-link-icon svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* Text wrapper */
.consultation-link-text {
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .consultation-link {
        font-size: 12px;
        padding: 6px 12px;
    }

    .consultation-link-icon svg {
        width: 12px;
        height: 12px;
    }
}
