@import url('base.css');
@import url('layout.css');
@import url('components.css');

/* Provider Cards (Step 2 specific) */
.disclaimer {
    font-size: 0.8rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 20px;
}

.provider-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.provider-card {
    border-radius: 16px;
    padding: 20px;
    color: white;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.provider-card.pti {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.provider-card.mic, .provider-card.pvi {
    background: linear-gradient(135deg, #3730a3 0%, #312e81 100%);
    box-shadow: 0 4px 12px rgba(49, 46, 129, 0.2);
}

.provider-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.provider-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.provider-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.provider-row .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.provider-row .price {
    font-size: 1.1rem;
    font-weight: 700;
}

.view-detail {
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    align-self: flex-end;
    width: fit-content;
    margin-left: auto;
}
