/**
 * Advanced Discovery Page Styles
 * Dark cockpit theme for Grok AI unit population
 */

.advanced-discovery-page {
    padding: 24px;
    min-height: 100vh;
}

/* Status dot indicators */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-dot.green {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.status-dot.red {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.status-dot.yellow {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

/* Property queue items */
.property-queue-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #1e293b;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.2s;
    cursor: pointer;
}

.property-queue-item:hover {
    background: #334155;
}

.property-queue-item.processed {
    opacity: 0.6;
}

.property-queue-item.has-units {
    border-left: 3px solid #10b981;
}

.property-queue-item.no-data {
    border-left: 3px solid #f59e0b;
}

.property-queue-item .property-info {
    flex: 1;
    min-width: 0;
}

.property-queue-item .property-info strong {
    display: block;
    color: #f8fafc;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-queue-item .property-info .address {
    display: block;
    color: #64748b;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-queue-item .property-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #8b5cf6;
}

.property-queue-item .badge {
    font-size: 10px;
    padding: 3px 8px;
    white-space: nowrap;
}

/* Log entries */
.log-entry {
    padding: 6px 0;
    border-bottom: 1px solid #1e293b;
    color: #94a3b8;
}

.log-entry .log-time {
    color: #64748b;
    margin-right: 8px;
}

.log-entry.log-success {
    color: #34d399;
}

.log-entry.log-error {
    color: #f87171;
}

.log-entry.log-warning {
    color: #fbbf24;
}

.log-entry.log-info {
    color: #94a3b8;
}

/* Scanned indicator */
.property-queue-item.scanned {
    border-left: 3px solid #8b5cf6;
}

.property-queue-item.scanned:not(.has-units) {
    border-left: 3px solid #8b5cf6;
}

/* Property badges container */
.property-queue-item .property-badges {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

/* More items indicator */
.more-items {
    text-align: center;
    color: #64748b;
    font-size: 12px;
    padding: 12px;
    font-style: italic;
}

/* No data message */
.no-data {
    text-align: center;
    color: #64748b;
    padding: 40px 20px;
}

/* Pagination controls */
.pagination-controls {
    background: #1e293b;
    border-radius: 8px;
}

.pagination-controls .btn-sm {
    min-width: 32px;
    padding: 4px 8px;
}

.pagination-controls .btn-sm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Badge variants */
.badge-secondary {
    background: #475569;
    color: #cbd5e1;
}

.badge-primary {
    background: #8b5cf6;
    color: white;
}

.badge-info {
    background: #3b82f6;
    color: white;
}