/* Telemetry Modal Styles */
.adminlgb-telemetry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.adminlgb-telemetry-modal.active {
    opacity: 1;
    visibility: visible;
}

.adminlgb-telemetry-content {
    background: #ffffff;
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.adminlgb-telemetry-modal.active .adminlgb-telemetry-content {
    transform: translateY(0);
}

.adminlgb-telemetry-badge {
    background: #f0f0ff;
    color: #4f46e5;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.adminlgb-telemetry-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
    line-height: 1.2;
}

.adminlgb-telemetry-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
}

.adminlgb-telemetry-collect {
    margin-bottom: 24px;
}

.adminlgb-telemetry-collect h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.adminlgb-telemetry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adminlgb-telemetry-list li {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.adminlgb-telemetry-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d1d5db;
}

.adminlgb-telemetry-note {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 32px;
}

.adminlgb-telemetry-actions {
    display: flex;
    gap: 12px;
}

.adminlgb-telemetry-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    flex: 1;
    text-align: center;
}

.adminlgb-telemetry-btn--allow {
    background: #6366f1;
    color: #ffffff;
}

.adminlgb-telemetry-btn--allow:hover {
    background: #4f46e5;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.adminlgb-telemetry-btn--deny {
    background: #ffffff;
    border-color: #d1d5db;
    color: #4b5563;
}

.adminlgb-telemetry-btn--deny:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.adminlgb-telemetry-loader {
    display: none;
    margin-left: 8px;
}

.adminlgb-telemetry-btn.loading .adminlgb-telemetry-loader {
    display: inline-block;
}

/* Spinner style */
.adminlgb-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: adminlgb-spin 0.8s linear infinite;
}

@keyframes adminlgb-spin {
    to { transform: rotate(360deg); }
}
