/* styles/debug-sidebar.css */
/* Reset body padding - sidebar won't affect layout */
body {
    margin: 0;
    padding: 0;
}

/* Debug sidebar styling */
.debug-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    background: linear-gradient(135deg, #ff7676 0%, #ff4545 100%);
    color: white;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: width 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Expanded sidebar */
.debug-sidebar.expanded {
    width: 250px;
}

/* Toggle control */
.debug-toggle {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.debug-toggle-icon {
    font-size: 20px;
    min-width: 20px;
    text-align: center;
}

.debug-toggle-text {
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.debug-sidebar.expanded .debug-toggle-text {
    opacity: 1;
}

/* Debug info sections */
.debug-info {
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.debug-section {
    margin-bottom: 15px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.debug-sidebar.expanded .debug-section {
    opacity: 1;
}

.debug-section-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 3px;
}

.debug-item {
    font-size: 12px;
    margin: 5px 0;
}

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

.status-indicator.status-active {
    background-color: #4CAF50;
    box-shadow: 0 0 5px #4CAF50;
    animation: pulse 2s infinite;
}

.status-indicator.status-inactive {
    background-color: #888;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}