/* Audisto Dashboard Custom Styles */
.crawl-item {
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.crawl-item:hover {
    background-color: #f8f9fa;
}

.crawl-item.selected {
    background-color: #007bff;
    color: white;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.success { background-color: #28a745; }
.status-indicator.warning { background-color: #ffc107; }
.status-indicator.danger { background-color: #dc3545; }

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.progress-container {
    margin: 20px 0;
}

.alert-summary {
    border-left: 4px solid #007bff;
    padding-left: 15px;
}

.alert-summary.critical {
    border-left-color: #dc3545;
    background-color: #f8d7da;
}

.data-table {
    font-size: 0.9em;
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.btn-group-vertical .btn {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 10px;
    }
    
    .card {
        margin-bottom: 15px;
    }
}