.tier-pricing-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.tier-pricing-table {
    min-width: 500px;
    width: 100%;
    border-collapse: collapse;
    background: white;
}

@media (max-width: 480px) {
    .tier-pricing-table th,
    .tier-pricing-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .tier-pricing-title {
        font-size: 1.2rem;
    }
    
    .tier-pricing-table tr.selected::after {
        left: 5px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .tier-pricing-table th,
    .tier-pricing-table td {
        padding: 6px 8px;
        font-size: 13px;
    }
}

.contact-for-price {
    color: #e41c22;
    font-weight: bold;
}

.tier-row.disabled {
    opacity: 0.8;
    cursor: not-allowed !important;
}

.tier-pricing-title {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem !important;
}

.tier-pricing-table th,
.tier-pricing-table td {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.tier-pricing-table th {
    background: #e9ecef;
    color: #495057;
    font-weight: 600;
}

.tier-pricing-table tr {
    transition: background-color 0.2s;
    cursor: pointer;
}

.tier-pricing-table tr:hover {
    background-color: #f1f3f5;
}

.tier-pricing-table tr.selected {
    background-color: #e3f2fd !important;
    position: relative;
}

.tier-pricing-table tr.selected::after {
    content: "✓";
    color: #1976d2;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}