.leads_template {
  margin: 80px auto 120px
}

.leads_template h2 {
  text-align: center;
  margin-bottom: 30px
}

.cfdb7-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
    margin-bottom: 5px
}

.cfdb7-tabs li {
    font-size: 20px;
    padding: 8px 15px;
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #535353;
    list-style: none;
    transition: background 0.3s, color 0.3s;
    color: #14162a;
}

.cfdb7-tabs li.active {
   background: #5b42cd;
    color: #fff;
    border-color: #5b42cd;
}

.cfdb7-tab-content {
    display: none;
    margin-bottom: 40px;
}

.cfdb7-tab-content.active {
    display: block;
}

table.cfdb7-table {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 1.4rem;
    word-break: break-all;
}

table.cfdb7-table th,
table.cfdb7-table td {
    width: 300px;
    border: 1px solid #52546e;
    padding: 8px;
    text-align: left;
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
}

table.cfdb7-table th {
    background-color: #d1d1d1;
    font-weight: bold;
    color: #000000;
    font-size: 18px;
    line-height: 26px;
}

.cfdb7-pagination a {
    display: inline-block;
    padding: 4px 8px;
    margin: 0 2px;
    background: #dbc088;
    color: black;
    text-decoration: none;
    border-radius: 4px;
}
.cfdb7-pagination a:hover {
    background: #dbc088;
}

@media (max-width: 1024px) {
    .cfdb7-tab-content {
        overflow-x: auto;
    }

    table.cfdb7-table {
        width: 100%;
        min-width: 600px;
        display: block;
    }

    table.cfdb7-table thead {
        display: table-header-group;
    }
}