/* Speed Bump Modal Styles */
.speed-bump-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.speed-bump-overlay.active {
    opacity: 1;
    visibility: visible;
}

.speed-bump-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
}

.speed-bump-overlay.active .speed-bump-modal {
    transform: scale(1) translateY(0);
}

.speed-bump-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.speed-bump-icon {
    width: 48px;
    height: 48px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.speed-bump-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.speed-bump-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    text-align: center;
    margin: 0;
}

.speed-bump-content {
    padding: 16px 24px 24px;
}

.speed-bump-message {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.speed-bump-url {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px;
    margin: 16px 0;
    font-family: monospace;
    font-size: 14px;
    color: #374151;
    word-break: break-all;
}

.speed-bump-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.speed-bump-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.speed-bump-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.speed-bump-btn-primary {
    background: #3b82f6;
    color: white;
}

.speed-bump-btn-primary:hover {
    background: #2563eb;
}

.speed-bump-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.speed-bump-btn-secondary:hover {
    background: #e5e7eb;
}