/**
 * LayerStack GPU Client Area Styles
 * Global styles for LayerStack GPU services in WHMCS client area
 */

/* Server Tags Styling */
.layerstack-tags {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.layerstack-tag-pill {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #bbdefb;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.layerstack-tag-pill:hover {
    background-color: #bbdefb;
}

/* Service Name Styling */
.layerstack-service-name {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.layerstack-product-info {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
    font-style: italic;
}

/* Service Status Indicators */
.layerstack-status-active {
    color: #4caf50;
    font-weight: 500;
}

.layerstack-status-suspended {
    color: #ff9800;
    font-weight: 500;
}

.layerstack-status-pending {
    color: #2196f3;
    font-weight: 500;
}

.layerstack-status-terminated {
    color: #f44336;
    font-weight: 500;
}

/* Additional Enhancement Styles */
.layerstack-enhanced-service .product-details {
    padding-left: 0;
}

.layerstack-enhanced-service .service-meta {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .layerstack-tags {
        gap: 2px;
    }

    .layerstack-tag-pill {
        font-size: 10px;
        padding: 1px 6px;
    }

    .layerstack-service-name {
        font-size: 13px;
    }

    .layerstack-product-info {
        font-size: 11px;
    }
}
