section.py-billing-info h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0066ff;
    text-align: center;
    margin-bottom: 15px;
}

.py-billing-table {
    border: 2px solid #0066ff;
    border-radius: 16px;
    border-collapse: separate;
    border-spacing: 0;
    width: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

@media (min-width: 992px) {
    .py-billing-table td.py-label {
    padding-right: 20px;
    }
    
    .py-billing-table td.py-value {
    padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .py-billing-table {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }
    
    .py-edit-btn {
        width: 100% !important;
        margin: 0;
    }
}



td.py-value {
    text-align: left;
}

.py-billing-table tbody tr {
    border-bottom: 1px solid #0066ff30;
    display: table-row;
}

.py-billing-table tbody tr:last-child {
    border-bottom: none;
}

.py-billing-table td.py-label {
    font-size: 15px;
    font-weight: bold;
    color: #0066ff;
    width: 31%;
}
.py-billing-table td.py-value {
    font-size: 15px;
    font-weight: 400;
}

.py-billing-table tbody tr:nth-child(odd) {
    background-color: #0066ff10;
}

.py-billing-table tbody tr:nth-child(even) {
    background-color: #fff;
}

.py-edit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    width: 50%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    background-color: #0066ff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.py-edit-btn:hover {
    background-color: #0056cc;
    color: #fff;
}

