.leads_template {
    margin: 120px auto;
}

.leads_template h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* TABS */
.cfdb7-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin-bottom: 10px;
}

.cfdb7-tabs li {
    list-style: none;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid #7245A3;
    background: #7245A3;
    color: #fff;
    cursor: pointer;
    transition: .25s;
}

.cfdb7-tabs li.active {
    background: #fff;
    color: #000;
}

/* TAB CONTENT */
.cfdb7-tab-content {
    display: none;
    margin-bottom: 40px;
}

.cfdb7-tab-content.active {
    display: block;
}

/* TABLE WRAPPER – cheia pentru responsive */
.cfdb7-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

/* TABLE */
table.cfdb7-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 900px; /* activează scroll pe mobil */
}

table.cfdb7-table th,
table.cfdb7-table td {
    border: 1px solid #52546e;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}

table.cfdb7-table th {
    background: #7245A3;
    color: #fff;
    font-weight: 600;
}

/* PAGINATION */
.cfdb7-pagination {
    margin-top: 20px;
    text-align: center;
}

.cfdb7-pagination a {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    background: #7245A3;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: .2s;
}

.cfdb7-pagination a:hover {
    filter: brightness(0.95);
}

/* MOBILE */
@media (max-width: 1024px) {
    table.cfdb7-table {
        font-size: 14px;
    }
}