/* Table Styles for Pricing */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    overflow: hidden;
}

.pricing-table th {
    background-color: #4da6ff;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 10px;
    text-align: left;
    border-bottom: 2px solid #4da6ff;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pricing-table td {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 12px 10px;
    border-bottom: 1px solid #e1e1e1;
    color: #000;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #f5f5f5;
}

.pricing-table .price-cell {
    font-weight: 700;
    color: #000;
    text-align: center;
}

.table-container {
    margin: 20px 0;
}

.table-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #4da6ff;
}

.table-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .pricing-table {
        font-size: 12px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px 5px;
    }
    
    .table-title {
        font-size: 16px;
    }
}
