.bds-analytics-wrap {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.bds-analytics-controls {
    margin-bottom: 20px;
}

.bds-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.bds-table th, 
.bds-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.bds-table th {
    background: #f4f4f4;
    text-align: left;
}

.bds-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid #ccc;
    border-top-color: #0073aa; /* color del loader */
    border-radius: 50%;
    animation: bds-spin 0.8s linear infinite;
    margin-right: 5px;
    vertical-align: middle;
}

@keyframes bds-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


