
.pricing-section {
    padding: 60px 0;
}

.pricing-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background: #fff;
    padding: 30px;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.price {
    font-size: 1.25rem;
    font-weight: 500;
}

.toggle-btn {
    cursor: pointer;
    font-size: 1.5rem;
    user-select: none;
}

.table-section {
    margin-bottom: 1.5rem;
}


.toggle-icon {
    cursor: pointer;
    font-size: 1.5rem;
    user-select: none;
    background-color: #141c44;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tariff-header-wrapper {
    background-color: #ec5c2c;
    padding: 10px;
    border-radius: 10px;
    color: whitesmoke;
}

.loze-price-table-container {
    padding: 0 10px;
}
/* Table styling */
.table {
    /*border-collapse: separate;*/
    /*border-spacing: 0;*/
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Header styling */
.table thead th {
    background-color: #141c44; /* Bootstrap primary blue */
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 12px;
}

/* Row styling */
.table tbody td {
    padding: 12px;
    border-top: 1px solid #dee2e6;
}

/* Hover effect */
.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .loze-price-table-container .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}
