.trp-pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.trp-pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    width: 250px;
    text-align: center;
    position: relative;
    transition: transform 0.2s;
}

.trp-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.trp-pricing-card.popular {
    border: 2px solid #007bff;
    transform: scale(1.05);
}

.trp-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    color: #666;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.trp-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

/* Dashboard Styles */
.trp-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.trp-metric-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    text-align: center;
}

.trp-metric-card h4 {
    margin: 0 0 10px 0;
    color: #666;
}

.trp-metric-card .value {
    font-size: 24px;
    font-weight: bold;
}

.value.positive { color: #28a745; }
.value.negative { color: #dc3545; }

/* Marketplace Styles */
.trp-marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.trp-robot-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

.robot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.robot-type {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.tier-badge {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

.tier-badge.free { color: #28a745; }
.tier-badge.mid { color: #007bff; }
.tier-badge.premium { color: #6f42c1; }
