
.trstemp-features-step {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.step-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.feature-card.required {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.feature-card.installed {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
}

.feature-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.required-badge {
    background: #667eea;
    color: white;
}

.installed-badge {
    background: #28a745;
    color: white;
}

.optional-badge {
    background: #6c757d;
    color: white;
}

.feature-card.optional {
    border-color: #dee2e6;
    background: rgba(108, 117, 125, 0.05);
}

.feature-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.feature-card p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.5;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.feature-details span {
    font-size: 14px;
    color: #28a745;
}

.feature-card input[type="checkbox"] {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.feature-card input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.plugin-status-summary {
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
}

.plugin-status-summary h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #333;
    text-align: center;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.status-label {
    font-weight: 600;
    color: #333;
}

.status-value {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-value.active {
    background: #28a745;
    color: white;
}

.status-value.installed {
    background: #17a2b8;
    color: white;
}

.status-value.missing {
    background: #dc3545;
    color: white;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trstemp-features-step {
        padding: 20px 15px;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
}