/* Table styles */
table.lae-leads-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

table.lae-leads-table th,
table.lae-leads-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
}

table.lae-leads-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

table.lae-leads-table tbody tr:hover {
    background-color: #f5f5f5;
    cursor: pointer;
    transform: scale(1.01);
    transition: all 0.2s;
}

table.lae-leads-table tbody tr:hover td {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2) inset;
}
/* Status indicator styles */
.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.success {
    background-color: green;
}

.status-indicator.error {
    background-color: red;
}

