
/* Estilos personalizados para CUT AI */

/* Menu divider */
.nav-divider {
    height: 1px;
    margin: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
}

/* Zone Editor Styles */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.timeline-content {
    padding-left: 8px;
}

/* Video Container Styles */
#video-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Canvas Styles */
#zone-canvas {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Color Indicator */
.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

/* Live Stream Styles */
#live-stream {
    transition: all 0.3s ease;
}

#live-stream:hover {
    transform: scale(1.02);
}

/* Stats Cards Animation */
.stats-card {
    transition: transform 0.2s ease;
}

.stats-card:hover {
    transform: translateY(-2px);
}

/* Events List */
#events-list {
    max-height: 300px;
    overflow-y: auto;
}

#events-list::-webkit-scrollbar {
    width: 4px;
}

#events-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

/* Zone Counts Cards */
.zone-count-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
}

/* Status Indicators */
.status-indicator {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.status-indicator .spinner-grow {
    width: 0.75rem;
    height: 0.75rem;
}

/* Notification Animations */
.alert {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Custom Button Styles */
.btn-zone-editor {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-zone-editor:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #zone-canvas {
        max-width: 100%;
        height: auto;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -12px;
    }
}

/*# sourceMappingURL=custom.min.css.map */
